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
- mongodb
- relative
- var
- grid-column-start
- css#cascading#display#block#inline
- javascipt
- grid-template-areas
- border-style
- foreach()
- Grid
- react-hook-form
- grid-column-end
- React
- grid-row-start
- python #qqplot #qq-plot #code
- localStorage
- createElement
- javascript
- package.json
- box-shadow
- className
- CSS
- confirm()
- gird-row-end
- scope
- classList
- variables
- prompt()
- collapsing-margins
- valuable
Archives
- Today
- Total
data life
JS - 입력함수, 데이터 타입 변환 본문
입력 함수
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 undefinedVariable); //"undefined"
parseInt()
: 문자열(string) -> 숫자(number)
console.log(typeof "11", typeof parseInt("11"));
//string number
const age = prompt("How old are you?");
console.log(parseInt(age));
2. confirm()
- boolean 값을 입력 받을 때 사용
- 확인) true
취소) false
'Front-end > JavaScript' 카테고리의 다른 글
Js - Basics, Document (0) | 2022.10.28 |
---|---|
JS - 조건문 (0) | 2022.10.27 |
JS - Function(함수) (0) | 2022.10.27 |
JS - 데이터 타입 (0) | 2022.10.26 |
JS - variables(변수) (0) | 2022.10.26 |