본문 바로가기
자바 풀스택 공부

Day 32. Java Script 변수

by seung_nari 2022. 2. 17.
// 완벽한 객체지향 언어
// 모든 데이터를 객체

var userId = 1;
var userName = 'Lee'

var user = {id: 1, name: 'Lee'}

var users = [
    {id: 1, name: 'Lee'},
    {id: 2, name: 'Kim'}
]

var f = function(x) {
    console.log("hello world :: " + x)
}

function f1(){
    function f2(){
        function f3(){
            function f4(){
                local = "local";
            }
        }
    }
}

function test() {
    local = "local";
}

test();
console.log(local);
// 한번 쭈욱 탐색해서 선언부를 처음에 싸악 선언 해준다.

var score

// undefined(할당을 미정의), not defined(선언을 미정의)
// data type : number, string, boolean, object, function, undefined

console.log(score == undefined)

console.log(public) // console 객체

public = "잏"

console.log(public)

var public = "앙"

console.log(public)

var regExp = /[가-힣]/
var regExp2 = new RegExp("[가-힣]")

'자바 풀스택 공부' 카테고리의 다른 글

Day 34.  (0) 2022.02.21
Day 33. Java Script 데이터 타입  (0) 2022.02.21
Day 31.  (0) 2022.02.17
Day 30.  (0) 2022.02.14
Day 29. text-shadow, white-space 공백 처리하기, margin, text-indent 텍스트 들여쓰기  (0) 2022.02.12

댓글