@@ -3,8 +3,7 @@ Math : Object
33Contains math related constants and functions.
44
55Spec:
6- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf#page=171
7-
6+ http://www.ecma-international.org/ecma-262/5.1/#sec-15.8
87
98----
109E : Number
@@ -16,7 +15,7 @@ console.log(Math.E);
1615</example>
1716
1817Spec:
19- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=171
18+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.1.1
2019
2120ReadOnly:
2221true
@@ -42,7 +41,7 @@ console.log(log10(10000));
4241</example>
4342
4443Spec:
45- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=171
44+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.1.2
4645
4746ReadOnly:
4847true
@@ -68,7 +67,7 @@ console.log(log2(64));
6867</example>
6968
7069Spec:
71- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=171
70+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.1.3
7271
7372ReadOnly:
7473true
@@ -94,7 +93,7 @@ console.log(log2(32));
9493</example>
9594
9695Spec:
97- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=171
96+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.1.4
9897
9998ReadOnly:
10099true
@@ -120,7 +119,7 @@ console.log(log10(10000));
120119</example>
121120
122121Spec:
123- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=172
122+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.1.5
124123
125124ReadOnly:
126125true
@@ -135,7 +134,7 @@ console.log(Math.PI);
135134</example>
136135
137136Spec:
138- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=172
137+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.1.6
139138
140139ReadOnly:
141140true
@@ -151,7 +150,7 @@ console.log(1 / Math.sqrt(2));
151150</example>
152151
153152Spec:
154- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=172
153+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.1.7
155154
156155ReadOnly:
157156true
@@ -167,7 +166,7 @@ console.log(Math.sqrt(2));
167166</example>
168167
169168Spec:
170- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=172
169+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.1.8
171170
172171ReadOnly:
173172true
@@ -184,7 +183,7 @@ console.log(Math.abs(-10));
184183</example>
185184
186185Spec:
187- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=172
186+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.1
188187
189188----
190189acos(x : Number) : Number
@@ -205,7 +204,7 @@ console.log(acosDegrees(0));
205204</example>
206205
207206Spec:
208- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=173
207+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.2
209208
210209----
211210asin(x : Number) : Number
@@ -225,9 +224,8 @@ var asinDegrees = function(x) {
225224console.log(asinDegrees(1));
226225</example>
227226
228-
229227Spec:
230- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=173
228+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.3
231229
232230----
233231atan(x: Number) : Number
@@ -248,7 +246,7 @@ console.log(atanDegrees(1));
248246</example>
249247
250248Spec:
251- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=173
249+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.4
252250
253251----
254252atan2(y : Number, x : Number) : Number
@@ -271,7 +269,7 @@ console.log(atan2Degrees(1, 0));
271269</example>
272270
273271Spec:
274- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=173
272+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.5
275273
276274----
277275ceil(x: Number) : Number
@@ -287,9 +285,7 @@ console.log(Math.ceil(-1.9));
287285</example>
288286
289287Spec:
290- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf#page=174
291-
292-
288+ http://www.ecma-international.org/ecma-262/5.1/#sec-15.8.2.6
293289
294290----
295291cos(x: Number) : Number
@@ -310,7 +306,7 @@ console.log(cosDegrees(45));
310306</example>
311307
312308Spec:
313- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=174
309+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.7
314310
315311
316312----
@@ -326,7 +322,7 @@ console.log(Math.E * Math.E);
326322</example>
327323
328324Spec:
329- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=174
325+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.8
330326
331327----
332328floor(x: Number) : Number
@@ -342,7 +338,7 @@ console.log(Math.floor(-1.9));
342338</example>
343339
344340Spec:
345- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=174
341+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.9
346342
347343
348344----
@@ -375,7 +371,7 @@ console.log(log10(10000));
375371</example>
376372
377373Spec:
378- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=175
374+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.10
379375
380376
381377----
@@ -389,7 +385,7 @@ console.log(Math.max(x, y, z));
389385</example>
390386
391387Spec:
392- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=175
388+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.11
393389
394390
395391----
@@ -403,7 +399,7 @@ console.log(Math.min(x, y, z));
403399</example>
404400
405401Spec:
406- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=175
402+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.12
407403
408404
409405----
@@ -416,7 +412,7 @@ console.log(Math.pow(2, 3));
416412</example>
417413
418414Spec:
419- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=175
415+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.13
420416
421417
422418----
@@ -439,7 +435,7 @@ console.log(randomInt(0, 100));
439435</example>
440436
441437Spec:
442- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=176
438+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.14
443439
444440
445441----
@@ -456,7 +452,7 @@ console.log(Math.round(-2.5));
456452</example>
457453
458454Spec:
459- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=176
455+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.15
460456
461457
462458----
@@ -478,7 +474,7 @@ console.log(sinDegrees(45));
478474</example>
479475
480476Spec:
481- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=176
477+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.16
482478
483479
484480----
@@ -493,7 +489,7 @@ console.log(Math.sqrt(100));
493489</example>
494490
495491Spec:
496- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=176
492+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.17
497493
498494----
499495tan(x : Number) : Number
@@ -514,5 +510,5 @@ console.log(tanDegrees(45));
514510</example>
515511
516512Spec:
517- http://www.ecma-international.org/publications/files/ECMA-ST/Ecma- 262.pdf#page=177
513+ http://www.ecma-international.org/ecma- 262/5.1/#sec-15.8.2.18
518514
0 commit comments