| JavaScript words |
| 1 | .subscribe() |
| 2 | .map() |
| 3 | .filter() |
| 4 | .switchMap() |
| 5 | .delay() |
| 6 | .combineLatest() |
| 7 | Number.MIN_VALUE |
| 8 | Number.MAX_VALUE |
| 9 | Number.NEGATIVE_INFINITY |
| 10 | Number.POSITIVE_INFINITY |
| 11 | Number.NaN |
| 12 | Math.E |
| 13 | Math.LN10 |
| 14 | Math.LN2 |
| 15 | Math.LOG10E |
| 16 | Math.PI |
| 17 | Math.SQRT1_2 |
| 18 | Math. SQRT2 |
| 19 | Math.abs() |
| 20 | Math.acos() |
| 21 | Math.asin() |
| 22 | Math.atan() |
| 23 | Math.atan2(x, y) |
| 24 | Math.ceil() |
| 25 | Math.cos() |
| 26 | Math.exp() |
| 27 | Math.floor() |
| 28 | Math.log() |
| 29 | Math.max() |
| 30 | Math.min() |
| 31 | Math.pow(x, y) |
| 32 | Math.random() |
| 33 | Math.round() |
| 34 | Math.sin() |
| 35 | Math.sqrt() |
| 36 | Math.tan() |
| 37 | Infinity |
| 38 | -Infinity |
| 39 | NaN |
| 40 | isNaN() |
| 41 | isFinite() |
| 42 | numb.toFixed() |
| 43 | numb.toExponential() |
| 44 | parseInt() |
| 45 | parseFloat() |
| 46 | Number() |
| 47 | valueOf() |
| 48 | String() |
| 49 | toString() |
| 50 | Boolean() |
| 51 | function() |
| 52 | console.log() |
| 53 | call() |
| 54 | apply() |
| 55 | array.concat() |
| 56 | array.join() |
| 57 | array.slice() |
| 58 | array.reverse() |
| 59 | array.sort() |
| 60 | array.pop() |
| 61 | array.push() |
| 62 | array.shift() |
| 63 | array.unshift() |
| 64 | array.splice() |
| 65 | str.concat() |
| 66 | str.slice() |
| 67 | str.substring() |
| 68 | str.charAt() |
| 69 | str.charCodeAt() |
| 70 | str.indexOf() |
| 71 | str.lastIndexOf() |
| 72 | str.replace() |
| 73 | str.split() |
| 74 | str.search() |
| 75 | str.match() |
| 76 | str.length |
| 77 | rexp.test() |
| 78 | String.fromCharCode() |
| 79 | obj.valueOf() |
| 80 | obj.toString() |
| 81 | obj.toLocaleString() |
| 82 | obj.hasOwnProperty() |
| 83 | obj.propertyIsEnumerable() |
| 84 | obj.isPrototypeOf() |
| 85 | obj.prototype |
| 86 | obj.prototype.property |
| 87 | delete obj.prototype.property |
| 88 | for() |
| 89 | forEach() |
| 90 | while() |
| 91 | switch() |
| 92 | if |
| 93 | else |
| 94 | case |
| 95 | break |
| 96 | Math |
| 97 | arguments |
| 98 | instanceof |
| 99 | arguments.length |
| 100 | property in object |
| 101 | delete |
| 102 | location.protocol |
| 103 | location.hostname |
| 104 | location.port |
| 105 | location.host |
| 106 | location.pathname |
| 107 | location.search |
| 108 | location.hash |
| 109 | location.href |
| 110 | location.reload() |
| 111 | location.assign() |
| 112 | location.replace() |
| 113 | window.open(url) |
| 114 | win.close() |
| 115 | win.focus() |
| 116 | win.blur() |
| 117 | win.moveTo() |
| 118 | win.moveBy() |
| 119 | win.resizeTo() |
| 120 | win.resizeBy() |
| 121 | win.closed |
| 122 | elem.parentNode |
| 123 | elem.childNodes |
| 124 | elem.firstChild |
| 125 | elem.lastChild |
| 126 | elem.nextSibling |
| 127 | elem.previousSibling |
| 128 | elem.ownerDocument |
| 129 | elem.childNodes.nodeName |
| 130 | elem.childNodes.nodeType |
| 131 | elem.childNodes.nodeValue |
| 132 | elem.hasChildNodes() |
| 133 | elem.cloneNode() |
| 134 | elem.appenChild() |
| 135 | elem.insertBefore() |
| 136 | elem.replaceChild() |
| 137 | elem.removeChild() |
| 138 | document.getElementsByTagName() |
| 139 | document.getElementById() |
| 140 | document.documentElement |
| 141 | elem.hasAttribute() |
| 142 | elem.getAttribute() |
| 143 | elem.setAttribute() |
| 144 | elem.removeAttribute() |
Комментарии