[js] 자바스크립트 파일에서 console.log 사용
how to us console.log in js file
console.log(1+2);
<!DOCTYPE html>
<html lang=ko>
<head>
<meta charset = "utf-8">
<!-- html 글자 깨짐 방지 -->
<title> 자바스크립트</title>
<script src="hellow.js" defer> </script>
<!-- 자바스크립트 파일 불러오기 -->
<!-- <script>
var hello = "hi every one!";
document.body.innerText = hello;
</script> -->
<!-- html 코드에서 자바스크립트 싫행시키기 ; 필수 -->
</head>
<body>
</body>
</html>
var jbRandom = Math.random();
var jbRandom = Math.floor(jbRandom * 10 );
var hello = "안녕하세요";
var nothello = "아니..안녕하세요";
if(jbRandom < 5)
{
document.body.innerText = hello;
};
if(jbRandom >= 5)
{
document.body.innerText = nothello;
};
console.log(jbRandom);
/* 자바스크립트 콘솔에 랜덤변수 값 출력 */
크롬 자바스크립트 콘솔을 통해 리턴되는 값이 다는 것을 확인할 수 있다.