Udemy에서 Jonas Schmedtmann의 Java수업을 결재했고한 2시간 반동안 앉아서 수업을 들은거 같다.문득 시계를 보니 벌써 오후 10시 54분이다. 어서 속도를 내고 싶다. 하루에 4시간씩 수업 듣는거 가능할련지.풀타임은 아니라도 파트타임 부트캠프 기분은
코딩이란걸 처음 접할때 마다 모든 사람들이 써보는 첫 문장인"Hello World"대학교때의 막무가내의 자바수업 이후로 binary tree에서의 로직 이해를 못넘기고 너무 아쉽게 그만뒀던 자바 스크립트를 다시금 시작해볼려고 한다. 그당시에는 너무나도 이해가 안되서 사
어제 깜빡하고 공부 일지를 올리지 못했다.어제까지 Udemy로 자바 24강을 들었다. 10일간의 연휴 기간도 끝나고 오늘부터 다시 출근을 하는데 출근전에 5강을 마져 듣고 섹션 1을 오전에 끝내 볼려고 6시에 일어났다 !아자아자
Expression: produce value Statement: statement that translate action Conditional(Ternary) Operator는 if/else statement의 기능을 하지만 expression이기 때문에 templ
Strict Mode라고 안보이는 error들을 잡아주는 고마운 function이 존재한다.
paramenter와 argument헷갈리지 말것parameter = placeholderarguments = actual value that use to fill in placeholdercalling = running=invocking function 전부 같은뜻!
no matter what type of function I use they will recieve date, transform date and output data!!function nameparameters: recieves input values (placehol
arrow function은 한줄쓰는데 30분은 걸리긴했는데 용캐 틀리지 않고 잘 쓰긴했다. 문제는 if/else구문을 이용한 function 이었는데 calling하는걸 까먹어서 도대체 왜 excute가 안되는지 해매서 결국엔 해답을 봤다. 그리고 여기선 왜 retu
Array: are a such a data structure(big container) that holds chunck of values that can be referenced later we can call it from the 0, not from 1 Array
리뷰겸 코드 챌린지를 Day4에 했던 Function을 다시 해본후 Array를 해봤다. 생각보다 크게 해맨 부분은 없던거 같다. 두가지 방법으로 마지막 부분을 해결해 봤는데 결과값이 같아서 다행인거 같다. Array는 각 자리에 Value가 필요하다. We can u
in arrays there is no way to giving each of elements(values) specific names.cannot reference them by the name, only reference them by the order such a
Method: this is function that stored as propertyMethod actions that can be performed on objectsMethod stored in properties as function definitions.thi
loop: can run the same code over and over again with out violates don't repeats yourself principles for loop: use it when sure about how many iteratio
VS CODE 프로그램의 일명 실시간 미리 보기 확장 프로그램라고 알려져 있는 live server extension이다.단축키window : alt + L → alt + Omac : command + L → command + O혹은 하단에 파란 탭쪽에 누르는 go l
Problem Solving1) Understand the problem2) Breaking up into sub problemsArray.concat()두개의 다른 Array를 기존 배열에 합쳐서 새 배열을 return한다.오늘 퇴근후에 피티끝나고 할것 Array/f
Software bug: defect or problem in a computer program \->unexpected or unintended behaviourDebugging: processing of finding, fixing and preventing bug
Object Individual element inside array cannot holds specific names. Breakpoints At each breakpoint, JavaScript will pause executing, and you can analy
마지막에 function 에다가 값을 줘야하는데 for loop에다가 줘서 왜 안되는지 해매긴했지만 해결하고 나니까 완벽하게 이해됬다 !!!아 기분좋은 금요일 아침!
“id” is unique in a page and can only apply to at most one element“class” selector can apply to multiple elements
Dom: Document Object Model: Structured representation of html documents. Allows JavaScript to access html elements and styles to manipulate them -> co
Refactoring : restructure code without changing how it works. To improve / To eliminate duplicateshelps you keep your code solid, dry, and easy to mai
when using querySelector, which matches multiple elements only the first one will be selected. In order to select all the elements need to use querySe
Element.classList The Element.classList property returns the class name(s) of an element, as a DOMTokenList object. This property is useful to add, r
only triggers soon as when fingers press down the keyonly triggers action when fingers are continuously on the key only triggers action when lift fige
DOM getElementById() Method returns the element that has the ID attribute with the specified value.Normally faster then using querySelector()주어진 값의 소수
toggles between a class name for an element.클래스 값을 토글링한다.클래스가 존재한다면 delete하고 false를 return하며, 존재하지 않으면 클래스를 add하고 true를 return한다Return Value: A DOMTok