Answers for "find first non repeating character javascript"

0

first non repeating character javascript

function firstNotRepeatingCharacter(s) {
    for (let i = 0; i < s.length; i++) {
        if(s.indexOf(s.charAt(i)) == s.lastIndexOf(s.charAt(i))) {
            return s.charAt(i)
        }
    }
    return '_'    
}
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 first non repeating character javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language