mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
10 lines
206 B
Markdown
10 lines
206 B
Markdown
---
|
|
date: 2020-11-04
|
|
id: cc0d1937-ec92-4a2f-802d-f5fbde4e61b2
|
|
title: JavaScript RegExp Search Method
|
|
---
|
|
|
|
``` javascript
|
|
console.log(" word".search(/\S/)); // 2
|
|
console.log(" ".search(/\S/)); // -1
|
|
```
|