mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
12 lines
228 B
Markdown
12 lines
228 B
Markdown
---
|
|
date: 20201112
|
|
id: da46f6f1-d81f-48f7-9704-fd1f69debb85
|
|
title: JavaScript String includes Method
|
|
---
|
|
|
|
# Syntax
|
|
|
|
``` javascript
|
|
console.log('hello'.includes('ell')) // true
|
|
console.log('hello'.includes('ell', 1)) // true
|
|
```
|