We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
const
var
1 parent 1c322dd commit 1afbcf8Copy full SHA for 1afbcf8
04_removeFromArray/solution/removeFromArray-solution.js
@@ -20,7 +20,7 @@ const removeFromArray = function (array, ...args) {
20
// A simpler, but more advanced way to do it is to use the 'filter' function,
21
// which basically does what we did with the forEach above.
22
23
-// var removeFromArray = function(array, ...args) {
+// const removeFromArray = function(array, ...args) {
24
// return array.filter(val => !args.includes(val))
25
// }
26
//
0 commit comments