Skip to content

Commit c21f9fd

Browse files
Update polyfill.md.
1 parent b123887 commit c21f9fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/javascript/concepts/cd polyfill/cd polyfill.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ console.log(arr.includes(3));
5757
console.log(arr.includes(5));
5858
```
5959

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.
6161

6262
```shell
6363
true

0 commit comments

Comments
 (0)