Tagged Questions

2
votes
2answers
120 views

javascript >>> operator?

does anyone knows what does the >>> operator in javascript does?
0
votes
1answer
1k views

Javascript comma operator

When combining assignment with comma (something that you shouldn't do, probably), how does javascript determine which value is assigned? Consider these two snippets: function nl(x) { document.write(x ...