2021-08-11 TIL

고병표·2021년 8월 11일
0

CodeSoom-TIL

목록 보기
3/16

Facts (사실, 객관)

  • 2회 오아시스 해커톤 대회에 개발자로 참여함.
  • 자바스크립트 책을 읽기 시작함.
  • 클린코드 책을 구매함

Feelings (느낌, 주관)

대학생 신분으로 참가하는 마지막 대회이다 보니 좋은 결과를 얻고 싶어 노력 중. (기획이 개발보다 어렵다...)
JS랑 친해지기 위해 노력 중(어렵다 이녀석..)

Findings (배운 점)

스크립트란?

  • 스크립트는 컴퓨터가 목표한 바를 달성하기 위해 실행하는 명령의 집합이다.

EventTarget.addEventListener()

// Function to change the content of t2
function modifyText() {
  var t2 = document.getElementById("t2");
  if (t2.firstChild.nodeValue == "three") {
    t2.firstChild.nodeValue = "two";
  } else {
    t2.firstChild.nodeValue = "three";
  }
}

// add event listener to table
var el = document.getElementById("outside");
el.addEventListener("click", modifyText, false);

guard clause

Affirmation(자기 선언)

  • 대회 나갔으니 상 타자!!
  • 꾸준히 노력하자!

0개의 댓글