Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f242188 commit ed98d81Copy full SHA for ed98d81
1 file changed
week4/10program.js
@@ -1,5 +1,7 @@
1
var program = [23, "this is a string", 13, "yellow",];
2
console.log(program);
3
-console.log(Infinity + Infinity);
+
4
var compare = 6/0 === 10/0;
5
-console.log(compare);
+console.log(compare);
6
+var compareneg = -6/0 === 10/0;
7
+console.log(compareneg);
0 commit comments