📅  最后修改于: 2022-03-11 15:03:51.543000             🧑  作者: Mango
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'
}