Skip to content

Instantly share code, notes, and snippets.

@mvnp
Created May 21, 2019 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mvnp/93eb7496e44fc3144bb0bba97548363e to your computer and use it in GitHub Desktop.
Save mvnp/93eb7496e44fc3144bb0bba97548363e to your computer and use it in GitHub Desktop.
let idpergunta_ = ""
let compactArray = []
for(let i = 0; i < arr.length; i++)
{
let idpergunta_ = arr[i].idpergunta;
if(idpergunta_ != undefined && idpergunta_ != null)
{
if(idpergunta_ == idpergunta)
{
console.log("Achei")
delete arr[i]
// COMO EU DELETE O INDICE DE arr
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment