손쉬운 JavaScript: 4부

이 게시물에서는 주석, 할당 연산자 및 산술 연산자와 같은 다양한 주제에 대해 살펴보겠습니다. 항상 그렇듯이 이 게시물과 함께 repl 및 코드를 엽니다. 스스로 해보면서 더 많이 배우고 근육 기억력을 키울 것입니다. 이러한 모든 작업을 repl의 콘솔에 기록하고 주석을 사용하여 수행 중인 작업을 강화합니다.

코멘트



댓글은 상당히 이해하기 쉽습니다. 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"시리즈 전체를 확인하십시오. 매일 새로운 글이 올라옵니다.

    좋은 웹페이지 즐겨찾기