JS 100제 문제 29 대문자만 지나가세요

이민정·2021년 4월 5일
0

JS100제

목록 보기
19/66

<풀이 코드>

	const word = prompt();
	if(word == word.toUpperCase()){
		console.log("YES");
	}else{
		console.log("NO");
	}
profile
공부하자~!

0개의 댓글