Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 홈캠 360
- 댕냥이 cctv
- 가성비홈캠
- 문제해결가이드
- 홈캠 야간모드
- VanillaJS
- 빌트인함수
- 견뎌야하나요
- 신생아수면홈캠
- fontend
- 오즈코딩스쿨
- 함수를 반복적으로 호출하려면
- 홈캠앱
- miniproject
- TroubleShooting Guide
- JSON.stingify
- web
- Array.filter
- 시즌드라마
- preventDefault()
- Challenge
- 초격자캠프
- 실시간 모니터링
- 실손보험
- 중첩배열
- removeButton
- 개발부트캠프
- JavaScript
- 고화질홈캠
- 수료후기
Archives
- Today
- Total
목록JavaScript (9)
Nomard Life
바닐라JS로 간단한 음주측정 계산기 만들기
바닐라JS로 간단한 음주측정 계산기 만들기 const calculator = { plus: function(a,b){ return a + b; }, minus:function(a,b){ return a - b; }, divice:function(a,b){ return a / b ; }, powerof:function(a,b){ return a ** b ; }, }; const plusResult = calculator.plus(10,2); console.log(plusResult); const age=parseInt(prompt("How old are you")); // 기본 string으로 인식됨 // 확인방법 console.log(typeof "15"); // parseInt를 사용해 문자를 숫자로 ..
Develop
2023. 2. 17. 15:25