JavaScript Puzzle - 1 12:29 AM Posted by Unknown javascript, javascript puzzle, js puzzle, puzzle No comments Courtesy: A Javascript conference video. I forgot the name of the conference. Will update. var END = 9007199254740992; //Math.pow(2,53) var START = END - 100; var count = 0; for(var i = START; i<= END; i++){ count++; } alert(count); What this alerts? And, give me the reason for that. Email ThisBlogThis!Share to XShare to Facebook
0 comments:
Post a Comment