Skip to content

Instantly share code, notes, and snippets.

@zahra-ove
Created March 22, 2022 13:46
Show Gist options
  • Save zahra-ove/b553ec3711e3057bf138c370bf62b65e to your computer and use it in GitHub Desktop.
Save zahra-ove/b553ec3711e3057bf138c370bf62b65e to your computer and use it in GitHub Desktop.

note1:

//Equality comparisons
if (strpos('testing', 'test')) {    // 'test' is found at position 0, which is interpreted as the boolean 'false'
    // code...
}

// vs. strict comparisons
if (strpos('testing', 'test') !== false) {    // true, as strict comparison was made (0 !== false)
    // code...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment