Last Updated: October 11, 2021
·
1.084K
· kelion

JS indexOf conditions

In JS indexOf returns -1 if string dont have a substring. If you want to check only having of substring, you write code like this:

if (string.indexOf(substring) != -1) {/*actions*/}

But to shorten it you can write:

if (~string.indexOf(substring)) {/*actions*/}