Answers for "find the first element which is not repeated in the string js"

1

first duplicate javascript

function firstDuplicate(a) {
    let data = [];
    
    for (dup of a) {
        if (data[dup]) {
            return dup
        } else {
            data[dup] = dup
        }
    }
    return -1
}
Posted by: Guest on October-25-2020
0

first repeated character in a string javascript

function firstRepeatingCharacter(str) {
  for (let i = 0; i < str.length; i++) {
    if (str.indexOf(str.charAt(i)) !== str.lastIndexOf(str.charAt(i))) {
      return str.charAt(i)
    }
  }
  return 'no results found'
}
Posted by: Guest on November-09-2020

Code answers related to "find the first element which is not repeated in the string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language