liammclennan/JavaScript-Koans topic array -


i have problem in exercise:

test("stack methods", function() {     var stack = [];     stack.push("first");     stack.push("second");      equal("second" , stack.pop(), 'what first value popped off stack?');     equal("first", stack.pop(), 'what second value popped off stack?'); }); 

in chrome console works great, qunit showing error in second test.


Comments

Popular posts from this blog

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

clojure - 'get' replacement that throws exception on not found? -