You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/javascript/concepts/cd polyfill/cd polyfill.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ console.log(arr.includes(3));
57
57
console.log(arr.includes(5));
58
58
```
59
59
60
-
Here the code first checks if the `Array.prototype.includes` method exists. If it's missing, the polyfill defines it. The polyfill works by iterating through the array and returning `true` if the specified element is found, or `false` if it's not.
60
+
Here this code first checks if the `Array.prototype.includes` method exists. If it's missing, the polyfill defines it. The polyfill works by iterating through the array and returning `true` if the specified element is found, or `false` if it's not.
0 commit comments