Network disconnected
Description
console.log를 이용해서 변수 s의 자료형을 출력해 보세요.
typeof
명령어를 이용하면 변수의 자료형을 알 수 있습니다.
예를 들어,
var c="안녕하세요";
console.log(c,typeof(c)); // 안녕하세요 "string"라고 출력
Result
Stop
Result of [Run Test] or [Submit] will be displayed here