티스토리 뷰

노마드 코더/JavaScript

Hello World with Javascript

wisdom in yellow 2021. 8. 22. 23:22

학습 에디터 Visual Studio Code, Atom, Sublime Text, Repl 킨다.

 

파일을 학습 에디터에 생성한다.

 

 

 

 

 

HTML

<!DOCTYPE html>
<html>
    <head>
        <title>Something</title>
        <link rel="stylesheet" href="index.css">
    </head>
    <body>
        <h1>This works!</h1>
        <script src="index.js"></script>
    </body>
</html>

CSS

body{
    background-color: peru;
}
h1 {
    color : white;
}

JS

console.log('Im Working. Im JS. Im Beautiful. Im worth it');

경고창을 띄워줌

-경고창이 띄는 모습, console.log를 통해 확인가능하다.

'노마드 코더 > JavaScript' 카테고리의 다른 글

let, const, var  (0) 2021.08.22
Your first JS Variable(변수!)  (0) 2021.08.22
VanillaJS  (0) 2021.08.22
ES5, ES6 ES....WTF!?!?!  (0) 2021.08.22
Super Powers of JS  (0) 2021.08.21
댓글
© 2021 wisdom