JavaScript 투쟁 - 3부 | 문자열 자동 변환
언제 문자열을 숫자로 변환합니까?
문자열 값이 숫자일 때 문자열을 숫자로 바꿀 수 있는 4개의 연산자가 있습니다.
플러스(+)
In JavaScript the plus operator have two cases.
1- When you use the + with a string
that only have numbers it'll be converted automatically to number
.
console.log('1'+'2'); // Outputs: 3
2- When you use the + with a string
that contains text, it'll not be converted to number; it'll be added to the text.
console.log("Hey"+"There"); // Outputs: HeyThere
빼기(-)
Whenever we use - in our code the string automatically get converted to number.
E.g.
console.log('5' - 1); // Outputs: 4
console.log('5' - '2'); // Outputs: 3
곱하기(*)
Whenever we use * in our code the string automatically get converted to number.
console.log('5' * 3); // Outputs: 15
console.log('5' * '2'); // Outputs: 10
나누다 (/)
Whenever we use / in our code the string automatically get converted to number.
console.log('6' / 2); // Outputs: 3
console.log('9' / '3'); // Outputs: 3
읽어 주셔서 감사합니다! 😁
Reference
이 문제에 관하여(JavaScript 투쟁 - 3부 | 문자열 자동 변환), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/abdelrahman_dwedar/javascript-struggles-part-3-string-auto-converting-4oje텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)