| about | help | code help+videos | done | prefs | 
| Given an array and a value, return a new array with the first occurrence of that value removed. removeFirst([17, 5, 13, 5, 8], 5) → [17, 13, 5, 8] removeFirst([1, 2, 3], 3) → [1, 2] removeFirst([6, 5, 4, 6, 5], 6) → [5, 4, 6, 5] ...Save, Compile, Run (ctrl-enter) | 
Progress graphs: 
 Your progress graph for this problem
 Random user progress graph for this problem 
 Random Epic Progress Graph
Difficulty: 200
Copyright Nick Parlante 2017 - privacy