Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Last active May 30, 2018 08:06
Show Gist options
  • Save oguzhanaslan/b6b605fe872b83983cec330022787a47 to your computer and use it in GitHub Desktop.
Save oguzhanaslan/b6b605fe872b83983cec330022787a47 to your computer and use it in GitHub Desktop.
_.includes vs includes()
var data = ['mustafa', 'kemal', 'atatürk'];
// lodash
_.includes(data, 'kemal');
// JavaScript
data.includes('kemal');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment