손쉬운 JavaScript: 4부
3850 단어 javascriptwebdevbeginners
코멘트
댓글은 상당히 이해하기 쉽습니다. JavaScript에는 두 가지 유형의 주석이 있습니다. 첫 번째는 한 줄 주석입니다. 두 번째는 여러 줄 주석입니다. 여기 몇 가지 예가 있어요.
// This is a single-line comment.
/*
This is a multi-line comment.
Everything inside of this comment
will not be run. You can also
use comments for not only notes,
but you can comment out a block of
code that you want to leave out but
not delete
*/
할당 연산자
JavaScript에는 여러 유형의 연산자가 있습니다.
할당 연산자는 변수에 값을 할당합니다. 이전 게시물에서 이에 대해 배웠습니다.
const currentLesson = 4; //assignment operator
산술 연산자
더하기 연산자는 숫자 추가, 부울 추가, 변수 추가 및 문자열 결합에 사용됩니다.
// expected result: 4
2 + 2
// expected result: 3
2 + true
/*
expected result: "I am a Developer"
Notice that there had to be a space
added at the end of the first string
*/
'I am a ' + 'Developer'
//expected result: '2001 is my graduation year'
2001 + ' is my graduation year'
곱셈 연산자는 숫자 또는 변수에 저장된 숫자를 곱합니다. 다음은 예입니다.
//multiplying numbers
5 * 3 //equals 15
//multiplying variables
const number1 = 5;
const number2 = 3;
const number3 = number1 * number2 // equals 15
5 - 5 //subtraction|
/*
exponentiation
expected output is 81
same as 3 to the 4th power
*/
3 ** 4
1 / 2 //division
/*modulus
returns the remainder
after division
*/
12 % 5
++ // increment (increases a number by 1)
-- // decrement (decreases a number by 1)
이 게시물을 즐겼기를 바랍니다! David Tetreau의 "JavaScript Made Easy"시리즈 전체를 확인하십시오. 매일 새로운 글이 올라옵니다.
Reference
이 문제에 관하여(손쉬운 JavaScript: 4부), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/dtetreau/javascript-made-easy-part-4-4da9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)