.textContent
518 단어 자바스크립트 계산기 만들기자바스크립트 계산기 만들기
const firstOperend = document.querySelector('.calculator__operend--left');
firstOperend
- 'calculator__operend--left' 클래스의 엘리먼트와, 그 자식 엘리먼트의 정보를 모두 담고 있습니다.
- firstOperend를 호출하면 태그 자체가 호출
firstOperend.textContent
- firstOperend와 그 자손의 '문자열(String)' 콘텐츠를 표현
- textContent에 숫자를 넣어도 '문자열'로 저장되는 이유
- HTML 문서이기 때문
Author And Source
이 문제에 관하여(.textContent), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@djdu4496/자바스크립트로-계산기기-만들기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)