문자열을 정수로 바꾸기

문제

문자열 s를 숫자로 변환한 결과를 반환하는 함수, solution을 완성하세요.

제한조건

  • s의 길이는 1 이상 5이하입니다.
  • s의 맨앞에는 부호(+, -)가 올 수 있습니다.
  • s는 부호와 숫자로만 이루어져있습니다.
  • s는 “0”으로 시작하지 않습니다.

풀이방향

  • 문자열을 정수로 전환

문제풀이

string2Integer.js
1
2
3
4
5
function string2Integer(str) {
return parseInt(str, 10);
}

export { string2Integer };
string2Integer.test.js
1
2
3
4
5
6
7
8
9
10
11
import { string2Integer } from "../src/string2Integer";

describe("string2Integer", () => {
it("Should return 1234 from '+1234' ", () => {
expect(string2Integer("+1234")).toBe(1234);
});

it("Should return -1234 from '-1234' ", () => {
expect(string2Integer("-1234")).toBe(-1234);
});
});

문제출처

  • 프로그래머스

다른 풀이

1
2
3
function strToInt(str){
return str/1
}