본문 바로가기
  • search_ _ _ _
  • search_ _ _ _
  • search_ _ _ _

분류 전체보기51

script_기초_반복문 //for 반복문 const colors = ["red","green","blue","aqua","pink"]; console.log(colors.length); // 5 for(let i = 0; i < colors.length; i++){ console.log(colors[i]); } //객체 for 반복문 const classA = [ { name : "Andy", age : 20, address : "seoul" }, { name : "Emma", age : 30, address : "busan" }, { name : "David", age : 40, address : "deagu" }, ]; for(let num = 0; num < classA.length; num++){ console.log(.. 2022. 10. 12.
script_기초 1. 자바스크립트가 상단에 위치할 경우 호출한 이후에 나오는 실행코드를 읽지 못하거나 속도가 많이 뎌디게 된다. 과거에는 이러한 문제를 방지하기 위해 맨 아래 삽입했지만 defer를 넣으면 문제가 해결되기에 상단에 위치 할 수있게 되었다. 2. 주석 /* 여러 줄 주석 */ // 한 줄 주석 3. 식별자 : 사용자가 임의로 만드는 명칭 예약어 : 자바스크립트 자체적으로 특정 기능을 실행하기 위해 예약된 명령어 실행문 : 특정 명령어를 실행하기 위한 구문 -식별자를 작성할 때에는 예약어는 피해야 함 4. 변수 : 특정 데이터값을 임시로 저장하는 공간 쓰는 이유 1. 특정값을 자주 사용해야 될때 (성능상의 이점) --자바스크립트로 하여금 한번 찾은 내용을 또 찾지 않고 재사용해야 할때 2. 반복적인 구문의 .. 2022. 10. 12.
Gradient Background Animation See the Pen Untitled by gaae (@gaae) on CodePen. 2022. 3. 15.
저작권 없는 무료 아이콘 1. Icons8 - SVG, PNGhttps://icons8.com/icons Download 1,348,700 free icons (SVG, PNG)Pixel-perfect Scalable, responsive, looking sharp and crisp on different devicesicons8.com  2. Iconmonstr - SVG, PNGhttps://iconmonstr.com/ iconmonstr - Free simple icons for your next projectTo use this icon, you must first accept the license agreement.iconmonstr.com  3. Icon finder - SVG, PNGhttps://www.iconfi.. 2022. 3. 14.
checkbox 만들기 See the Pen Untitled by gaae (@gaae) on CodePen. 2022. 3. 14.
table 만들기 See the Pen Untitled by gaae (@gaae) on CodePen. 2022. 3. 14.