• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1true()
2false()
3number("1.5")
4number('abc')
5-number('abc')
6floor(0.1)
7floor(-0.1)
8floor(-0)
9floor(0)
10floor(5.2)
11floor(-5.2)
12floor(100000000000000000000)
13floor(-100000000000000000000)
14floor(0 div 0)
15floor(1 div 0)
16floor(-1 div 0)
17ceiling(0.1)
18ceiling(-0.1)
19ceiling(-0)
20ceiling(0)
21ceiling(5.2)
22ceiling(-5.2)
23ceiling(100000000000000000000)
24ceiling(-100000000000000000000)
25ceiling(0 div 0)
26ceiling(1 div 0)
27ceiling(-1 div 0)
28round(0.1)
29round(5.2)
30round(5.5)
31round(5.6)
32round(-0.1)
33round(-5.2)
34round(-5.5)
35round(-5.6)
36round(0.5)
37round(-0.5)
38round(100000000000000000000)
39round(-100000000000000000000)
40round(0 div 0)
41round(1 div 0)
42round(-1 div 0)
43