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 ?
- 1 You should be having string objects in the first place. – Felix Kling Commented Sep 26, 2014 at 14:58
1 Answer
Reset to default 10You 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
版权声明:本文标题:Conversion of String Object to String Primitive in Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743768500a2535685.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论