Skip to content

Commit 7c63cc1

Browse files
committed
Large content updates, and operators section
added.
1 parent e26048e commit 7c63cc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JavaScript-Quick-Reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ const sum = numbers.reduce((accumulator, currentValue) => {
593593
console.log(sum); // Output: 15
594594
```
595595

596-
### array.includes() method
596+
### Array.includes() method
597597

598598
The includes() method in JavaScript is used to determine whether an array includes a certain value among its elements. It returns true if the array contains the specified element, and false otherwise. This method offers a simple way to check for the presence of a value within an array without needing to iterate through its elements manually.
599599

0 commit comments

Comments
 (0)