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

Friday, December 7, 2012

Codecademy: Codeyear Removing items


//sample solution


//Here's our suits array
var suits = ["hearts","clubs","diamonds","spades"];

//remove the middle 2 items, "clubs" and "diamonds" from the array
suits.splice(1,2);
console.log(suits);

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts