티스토리 뷰
Javascript는 type을 쓰지 않으니 원치않는 결과를 가질 때가 있는데 이럴때 아주 간단하게 형변환을 하는 방법이 있다.
number + string type "" 은 number to string type conversion
string * 1 은 string to number conversion
Example code
let arr = [1, 2, 3];
console.log(typeof arr); //datatype: object
console.log(typeof arr[1]); //datatype: number
let changeToString = (arr + "").split(","); //number + "": changed to string
console.log(changeToString); //['1', '2', '3']
console.log(typeof changeToString); //datatype: object
console.log(typeof changeToString[1]); //datatype: string
let newArr = [];
for(let i = 0; i < changeToString.length; i++){
let changeToNumber = arr[i] * 1; //arr[i] * 1: converted to number
newArr.push(changeToNumber);
}
console.log(newArr); // [1, 2, 3]
console.log(typeof newArr[1]); //datatype: number
'JavaScript' 카테고리의 다른 글
short circuit evaluation (0) | 2020.12.26 |
---|---|
Spread Operator (0) | 2020.12.26 |
Rest parameter (0) | 2020.08.26 |
How to run your Javascript test code in Chrome (0) | 2020.07.28 |
Single-thread in JavaScript (0) | 2019.09.06 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- algorithm
- rest parameter
- string class in java
- equals()
- Object type casting
- easy javascript algorithm
- HashMap
- Javascript Algorithm
- spring boot application
- compareTo()
- HackerRank Algorithm
- code refactoring
- javascript
- 프로그래머스 알고리즘
- hackerrank javascript solution
- repeat()
- Collection Framework
- substring()
- easy algorithm
- 프로그래머스
- 프로그래머스 알고리즘문제
- hackerrank solution
- hackerrank
- math.abs
- java
- 알고리즘
- ... in Javascript
- C++
- hackerrank javascript
- math.max
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함