spy-js for node.js: can it show you results of multiple calls (REPOST as question)
for example
function func1(i)
{
var c= i/2;
return 0;
}
func1(10); //call 1
func1(20); //call2
for both iterations, can i see the values of c in func1 as both 5 in call 1 and 10 in call2 2 via the spy.js magnifier?
currently if i hover over the c variable, i see 10 only, the result fron call 2.
also curious if i can handle showing me the value of a variable in iterations of a for loop.
thanks.
Please sign in to leave a comment.