Skip to content

Instantly share code, notes, and snippets.

@ProgramAlgo
Created April 4, 2018 09:03
Show Gist options
  • Save ProgramAlgo/6e878dce53665f1934d6c37cda8ef142 to your computer and use it in GitHub Desktop.
Save ProgramAlgo/6e878dce53665f1934d6c37cda8ef142 to your computer and use it in GitHub Desktop.
const arr = [];
function checkArr(val) {
console.log('checkval', val);
const i = arr.indexOf(val);
if (i !== -1) {
arr.splice(i, 1);
} else {
arr.push(val);
}
}
// test
console.log('begin', arr);
checkArr('1');
checkArr('2');
checkArr('3');
checkArr('2');
console.log('end', arr);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment