You are viewing a single comment's thread. Return to all comments →
Javascript solution:
function introTutorial(V, arr) { // Write your code here for(let i=0; i<arr.length; i++){ if(V == arr[i]) return i } }
Seems like cookies are disabled on this browser, please enable them to open this website
Intro to Tutorial Challenges
You are viewing a single comment's thread. Return to all comments →
Javascript solution: