Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, May 11, 2017

FreeCodeCamp Filter Arrays With Filter Sample Solution


var oldArray = [1,2,3,4,5,6,7,8,9,10];

// Only change code below this line.

var newArray = oldArray.filter(function(val) {
  return val < 6;
});

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts