"JS10 Day 1: Arithmetic Operators"의 두 판 사이의 차이

3번째 줄: 3번째 줄:
* Tutorials - 10 Days of Javascript - Day 1: Arithmetic Operators
* Tutorials - 10 Days of Javascript - Day 1: Arithmetic Operators
* https://www.hackerrank.com/challenges/js10-arithmetic-operators/problem
* https://www.hackerrank.com/challenges/js10-arithmetic-operators/problem
{| class='wikitable'
|+ [[해커랭크 10 Days of Javascript]]
! Day !! 문제 !! JavaScript
{{JS10 0-1}}
|}
----


<source lang='javascript'>
<source lang='javascript'>
12번째 줄: 20번째 줄:
}
}
</source>
</source>
==같이 보기==
* [[해커랭크 10 Days of Javascript]]
[[분류: 10 Days of Javascript]]

2018년 8월 12일 (일) 14:39 판

개요

Day 1: Arithmetic Operators
해커랭크 10 Days of Javascript
Day 문제 JavaScript
0-1 Day e
1 JS10 Day 0: Hello, World!
2 JS10 Day 0: Data Types
3 JS10 Day 1: Arithmetic Operators
4 JS10 Day 1: Functions
5 JS10 Day 1: Let and Const

function getArea(length, width) {
    return length * width;
}
function getPerimeter(length, width) {
    return ( length + width )* 2;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}