Skip to content

Instantly share code, notes, and snippets.

@jennojenno
Created April 23, 2013 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jennojenno/5448370 to your computer and use it in GitHub Desktop.
Save jennojenno/5448370 to your computer and use it in GitHub Desktop.
Finding whether a value inputted by user exists in the given array
var fruits = ['apples', 'pears', 'bananas'];
console.log("Enter in a fruit name");
process.stdin.on('data', function(fruit) {
var fruitName = fruit.toString().replace("\n", "");
if (fruits.indexOf(fruitName) >= 0 ) {
console.log("The value has been found in the array");
process.exit(); }
else {
console.log("Value not found");
process.exit(); }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment