MCPcopy
hub / github.com/Vishal-raj-1/Awesome-JavaScript-Projects / pop

Function pop

assets/js/infixevaluator.js:47–57  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

45}
46
47function pop()
48{
49 if(topp==-1)
50 return 0;
51 else
52 {
53 var popped_ele=stackarr[topp];
54 topp--;
55 return popped_ele;
56 }
57}
58
59function operator(op)
60{

Callers 5

postfixevaluatorFunction · 0.70
InfixtoPostfixFunction · 0.70
showMethod · 0.70
showMethod · 0.70
showMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected