fork download
  1. let word = 'lala';
  2.  
  3. function findLetter(letter) {
  4. if (word.indexOf(letter) > -1) {
  5. console.log(letter);
  6. }
  7. }
  8.  
  9. findLetter('b');
Success #stdin #stdout 0.03s 16784KB
stdin
Standard input is empty
stdout
Standard output is empty