Javascript #console.log

김상웅·2022년 4월 28일
0

자바스크립트의 출력 방식 중 하나는 console.log입니다.
console.log는 괄호 안의 메시지를 콘솔창에 출력하는 명령어입니다.

📌예시

	const myName = "안녕하세요.";

	console.log(myName); // result: "안녕하세요."
	console.log(300); // result: 300
	console.log("velog") // result: "velog:

📌 출력 방법

(저는 vscdoe (Visual Studio Code)를 이용 중입니다.)

  1. 웹 브라우저 f12 혹은 개발자도구 창의 콘솔 창 활용.
  2. html 파일과 연동하여 로컬 서버 개발자도구에서 확인하기.
  3. 에디터 (vscode, codepen 활용)
	vscdoe 사용 시 유용한 커맨드 for run code
    
    "ctrl + alt + n "
profile
누구나 이해할 수 있도록

0개의 댓글