Guest User

Untitled

a guest
Jul 22nd, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. var found = A.filter(function(e) { return e.txt === inputvalue; });
  2. if(found.length){
  3. etext.innerHTML="already Exists";
  4. } else {
  5. var addlist={
  6. a: ul.appendChild(createli),
  7. b: createli.appendChild(span),
  8. c: span.appendChild(txt),
  9. d: span.appendChild(span2),
  10. e: span2.appendChild(closetext),
  11. txt: inputvalue
  12. }
  13.  
  14. A.push(txt);
  15. }
Add Comment
Please, Sign In to add comment