Intro to Tutorial Challenges

  • + 0 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
        }
    }