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*/}
Written by Alexandr Subbotin
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Javascript
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#