Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

get the first recurring character 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'
}
 
PREVIOUS NEXT
Tagged: #recurring #character #javascript
ADD COMMENT
Topic
Name
6+7 =