Pergunta de entrevista da empresa Notch

1. Print out the needle in the haystack - return the character from the string

Resposta da entrevista

Sigiloso

5 de jul. de 2021

let func1 = (char, testedString) => { let splitString = testedString.split(); splitString((x) => { if (x == char) { return x; } }); };