Two ways to remove an item in a specific in an array
JSsnippets

Two ways to remove an item in a specific in an array

//Mutating way
const muatatedArray = ['a','b','c','d','e'];
muatatedArray.splice(2,1)
console.log(muatatedArray) //['a','b','d','e']

//Non-mutating way
const nonMuatatedArray = ['a','b','c','d','e'];
const newArray = nonMuatatedArray.filter((item'index) => !( index === 2 ));
console.log(newArray) //['a','b','d','e']

20 Methods to Get to Know JavaScript Array

No alt text provided for this image

In the meantime, if you have any JavaScript questions, feel free to contact me. I'll do by best to create free articles to answer your questions.

Please follow me on LinkedIn / Twitter / Facebook / Codesandbox / Codepen.

要查看或添加评论,请登录

Dan Ichim的更多文章

  • Draw a heart in CSS (#STOP COVID-19)

    Draw a heart in CSS (#STOP COVID-19)

    .heart { ? position: absolute; ? margin: auto; ? top: 0; ? right: 0; ? bottom: 0; ? left: 0; ? background-color:…

    2 条评论
  • The second argument of JSON.stringify lets you cherry-pick ?? keys to serialize.

    The second argument of JSON.stringify lets you cherry-pick ?? keys to serialize.

    const user = { id: 459, name: 'JS snippets', age:29, education:{ degree: 'Masters'…

  • URLSearchParams Web API

    URLSearchParams Web API

    The URLSearchParams interface defines utility methods to work with the query string of a URL. var paramsString =…

  • Nested Destructuring

    Nested Destructuring

    const user = { id: 325, name: 'JS Heroes', age: 28, passions: { tech: 'Public speaking', outside: 'Runing' } }…

    1 条评论
  • Copy Text to Clipboard

    Copy Text to Clipboard

    function copyToClipboard() { const copyText = document.getElementById("myInput"); copyText.

  • How to Change Screen Orientation with Javascript

    How to Change Screen Orientation with Javascript

    Demo is here, Source code is here Going to Full-Screen Mode It is necessary to go to full-screen mode before locking…

  • Get unique values in an array

    Get unique values in an array

    const numbers = [1,1,3,2,5,3,4,7,7,7,8]; //Ex1 const unieqNumbers = numbers.filter((v,i,a) => a.

  • Exploring the JavaScript Date Object

    Exploring the JavaScript Date Object

    There are hundreds of timezones in our world. In JavaScript, we only care about two—Local Time and Coordinated…

  • How to convert truthy/falsy to boolean (true/false)

    How to convert truthy/falsy to boolean (true/false)

    const myVar = null; const mySecondVar = 1; console.log( Boolean(myVar) ) // false console.

  • How to generate a random number in a given range

    How to generate a random number in a given range

    // Returns a random number(float) between min (inclusive) and max (exclusive)? const getRandomDoubleNumber = (min…

    1 条评论

社区洞察

其他会员也浏览了