Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. var auditorListValue = ["", "1", "2", "3", "4"];
  2. var oldAuditGroupId = "3";
  3. var auditorListValue = auditorListValue.filter(function (item) {
  4. return item !== oldAuditGroupId;
  5. });
  6. console.log(auditorListValue);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement