프로그래머스 Lv1. 문자열을 정수로 바꾸기

용상윤·2021년 3월 11일
0
post-custom-banner

문제

https://programmers.co.kr/learn/courses/30/lessons/12925


접근

js python 자료형변환


코드

📌 js

제출한 코드

function solution(s) {
    return +s
  // return parseInt(s);
  // return Number(s);
}

📌 python

제출한 코드

def solution(s):
    return int(s)

✍ 메모

js 자료형 변환

문자 → 숫자(정수형)

const str = "-1234";

parseInt(str);
// -1234

+str;
// -1234

Number(str);
// -1234

숫자 → 문자


const num = 1234;

String(num);
// "1234"

num + "";
// "1234"
profile
달리는 중!
post-custom-banner

0개의 댓글