hye5nee123 / java-master

1 stars 0 forks source link

23.01.02 #9

Closed hye5nee123 closed 10 months ago

hye5nee123 commented 10 months ago

querySelector() 은 단건 조회( 특정 한 건만 조회 하겠다 (id값 직접 지정 >약간 애매)) querySelectorAll() 은 특정 태그 전체 조회 getElementById() https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById

함수의 초기 리턴 값은 undefined;

let num = null; (null은 obj)

let num1;
let num2 = null;
console.log(num1 == num2);   //값, 타입 비교.

비교연산자 이용시 undefined값과 null 값을 같다고 봄(true)

console.log(num1 === num2); 이렇게 하면(타입까지 비교하겠다) false가 나옴.

https://2ssue.github.io/common_questions_for_Web_Developer/docs/Javascript/13_undefined&null.html#undefined

image

image

image

문자갑을 숫자로 바꿀 수 없을 때 NAN (not a number)으로 표기

삼항연산자. image

오... image

image

image

image

2진수 구하기

hye5nee123 commented 10 months ago

image

<안에 넣으면 구문오류 안 일어남

hye5nee123 commented 10 months ago

image

이거 엄청 중요함!

hye5nee123 commented 10 months ago

image

image

?!

hye5nee123 commented 10 months ago

자꾸 이어지는 개념이라 ... "가비지 컬렉션" > 공부 해야할듯..;;;

hye5nee123 commented 10 months ago

만약 함수 안에서 this를 넣지 않으면 에러가 나거나 전역변수를 찾아올거임.

https://leehwarang.github.io/docs/tech/constructor.html

hye5nee123 commented 10 months ago

전역변수는...window 객체다 ..?

https://unikys.tistory.com/324

???

hye5nee123 commented 10 months ago

화살표 함수 표현식....중요한 기능..ok

https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Functions/Arrow_functions