Skip to content

Instantly share code, notes, and snippets.

@Otto-Vector
Last active May 13, 2021 06:09
Show Gist options
  • Save Otto-Vector/d0367c681e58b10f9351a81e03959b30 to your computer and use it in GitHub Desktop.
Save Otto-Vector/d0367c681e58b10f9351a81e03959b30 to your computer and use it in GitHub Desktop.
trueOf
//проверка на присутствие числа в аргументе
//если хоть один аргумент в массиве совпадает с числом, возвращает true
Number.prototype.trueOf = function(...props) {
return props.includes(this)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment