admin管理员组

文章数量:1344973

A silly question I guess, how can we convert a String object in javascript to a String primitive ?
Problem is I am having a map in which key is a String literal and it is not giving any result if I am passing a String object to it. Any way i can covert that string object to primitive to get the results from map ?

A silly question I guess, how can we convert a String object in javascript to a String primitive ?
Problem is I am having a map in which key is a String literal and it is not giving any result if I am passing a String object to it. Any way i can covert that string object to primitive to get the results from map ?

Share Improve this question asked Sep 26, 2014 at 14:42 snow_leopardsnow_leopard 1,5563 gold badges23 silver badges40 bronze badges 1
  • 1 You should be having string objects in the first place. – Felix Kling Commented Sep 26, 2014 at 14:58
Add a ment  | 

1 Answer 1

Reset to default 10

You can use the valueOf method to extract the primitive value from a wrapper object:

var sObj = new String("foo");
var sPrim = sObj.valueOf();

Wrapper objects (String, Boolean, Number) in JavaScript have a [[PrimitiveValue]] internal property, which holds the primitive value represented by the wrapper object:

[[PrimitiveValue]]: Internal state information associated with this object. Of the standard built-in ECMAScript objects, only Boolean, Date, Number, and String objects implement [[PrimitiveValue]].

This primitive value is accessible via valueOf.

本文标签: Conversion of String Object to String Primitive in JavascriptStack Overflow