• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1Alert: Answer for "" is: string
2Alert: Answer for "goats" is: string goats
3Alert: Answer for "b4" is: string b4
4Alert: Answer for "b4.5" is: string b4.5
5Alert: Answer for "4x" is: string 4x
6Alert: Answer for "4.5x" is: string 4.5x
7Alert: Answer for "4" is: number 4
8Alert: Answer for "4" is: number 4
9Alert: Answer for " 4" is: number 4
10Alert: Answer for "4 " is: number 4
11Alert: Answer for "                          4                                      " is: number 4
12Alert: Answer for "4 3 2 1" is: string 4 3 2 1
13Alert: Answer for "-4" is: number -4
14Alert: Answer for "23.00000001" is: number 23.00000001
15Alert: Answer for "23.00000000000000001" is: number 23
16Alert: Answer for "4e+25" is: number 4e+25
17Alert: Answer for "40000000000000000000000000" is: number 4e+25
18Alert: Answer for "25,5" is: string 25,5
19Alert: Answer for "1e+5" is: number 100000
20Alert: Answer for "1e5" is: number 100000
21Alert: Answer for "1e-5" is: number 0.00001
22Alert: Answer for "-1e-5" is: number -0.00001
23Alert: Answer for "1.2e5" is: number 120000
24Alert: Answer for "Infinity" is: number Infinity
25Alert: Answer for "Infinity" is: number Infinity
26Alert: Answer for "INFINITY" is: string INFINITY
27Alert: Answer for "INF" is: string INF
28Alert: Answer for "NaN" is: number NaN
29Alert: Answer for "NaN" is: number NaN
30Alert: Answer for "NAN" is: string NAN
31Alert: Answer for "0x100" is: number 256
32Alert: Answer for "0x100.1" is: string 0x100.1
33Alert: Answer for "0x100,1" is: string 0x100,1
34Alert: Answer for "0x100x1" is: string 0x100x1
35Alert: Answer for "123x6" is: string 123x6
36Alert: Answer for "123xy6" is: string 123xy6
37Alert: Answer for "123.y6" is: string 123.y6
38Alert: Answer for "1,000,000" is: string 1,000,000
39Alert: Answer for "1.2.3" is: string 1.2.3
40Alert: Answer for "1-3" is: string 1-3
41Alert: Answer for "1+3" is: string 1+3
42Alert: Answer for "1.-3" is: string 1.-3
43Alert: Answer for "1.+3" is: string 1.+3
44Alert: Answer for "1,2,3,4" is: number 1
45Alert: Answer for "[1, 2, 3, 4]" is: string [1, 2, 3, 4]
46Alert: Answer for "[object Object]" is: string [object Object]
47Alert: Answer for "{a: 1, b: 2}" is: string {a: 1, b: 2}
48Alert: Answer for "function (x) { return x+1; }" is: string function (x) { return x+1; }
49Alert: Answer for "function(x) { return x+1; }" is: string function(x) { return x+1; }
50