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 |
Tags
- relative
- foreach()
- package.json
- gird-row-end
- React
- css#cascading#display#block#inline
- collapsing-margins
- classList
- valuable
- grid-column-end
- javascipt
- prompt()
- grid-column-start
- grid-template-areas
- react-hook-form
- box-shadow
- CSS
- grid-row-start
- Grid
- className
- scope
- variables
- python #qqplot #qq-plot #code
- localStorage
- var
- border-style
- createElement
- confirm()
- javascript
- mongodb
Archives
- Today
- Total
목록prompt() (1)
data life

입력 함수 1️⃣ prompt() 2️⃣ confirm() 1. prompt(message, default) message : 입력 창에 띄울 메세지 default : 입력 부분의 기본 값 (string) const age = prompt("How old are you?"); console.log(age); - 오래된 기능이라 잘 쓰진 않음 - 문자열의 값을 반환하므로 숫자로 얻고 싶은 경우 타입 변환이 필요하다. typeof : 데이터 타입 반환하는 연산자 console.log(typeof 1); // "number" console.log(typeof "code"); // "string" console.log(typeof true); // "boolean" console.log(typeof undefi..
Front-end/JavaScript
2022. 10. 27. 16:28