String.prototype.toString()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
toString()
메서드는 객체의 문자열 표현을 반환합니다.
시도해보기
구문
js
toString();
반환 값
메서드를 호출하는 객체의 문자열 표현.
설명
String
객체는 Object
객체의 toString()
메서드를 상속하지 않고 재정의합니다. String
의 toString()
메서드는 객체의 문자열 표현을 반환하며 String.prototype.valueOf()
메서드와 동일합니다.
예제
toString()
사용하기
String
객체의 문자열 값을 표시하는 예제입니다.
js
var x = new String("Hello world");
console.log(x.toString()); // logs 'Hello world'
명세
Specification |
---|
ECMAScript Language Specification # sec-string.prototype.tostring |
브라우저 호환성
BCD tables only load in the browser