FACG2 / 4Trends

Here is whats trending on Google 🤘
1 stars 1 forks source link
javascript nodejs

4Trends

Here is whats hot on Google! 🤘

Team: @EngAyoosh, @Ghadeer93, @mahmne, @aajour

User Story:

The word "trend" refers to a general direction in which something is developing or changing fastly.

4Trends is your best place to know whats going on around you, with just a click!

About 4Trends:

// Array.splice(position_you_want_to_remove, number_of_items_to_remove)

var myFish = ['angel', 'clown', 'mandarin', 'sturgeon'];

myFish.splice(2, 0, 'drum'); // insert 'drum' at 2-index position
// myFish is ["angel", "clown", "drum", "mandarin", "sturgeon"]

myFish.splice(2, 1); // remove 1 item at 2-index position (that is, "drum")
// myFish is ["angel", "clown", "mandarin", "sturgeon"]

see more at: Array.prototype.splice

How to use?