str1="12345" str2="11145" check=function(str){ if(str[0]===str[1]&&str[1]===str[2])return alert("YES"); alert("NO") } check(str1) check(str2)