Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How es6 converts a string to an object

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

In this article Xiaobian for you to introduce in detail "es6 how to convert a string into an object", the content is detailed, the steps are clear, and the details are handled properly. I hope this "es6 how to convert a string into an object" article can help you solve your doubts, following the editor's ideas slowly in depth, together to learn new knowledge.

Conversion method: 1, with "let object name = {key1:" string 1 ", key2:" string 2 ",...}" statement, you can turn the string into the object's value;2, with the "let object name = {}; object name [" string "] = 'value';" statement, you can turn the string into the object's key.

The operating environment of this tutorial: windows7 system, ECMAScript version 6, Dell G3 computer.

Es6 converts a string to an object

1) string as the value of the object

Let str1 = 'test'let srt2 =' 111'let objectData = {key1: str1, key2: srt2}; console.info ("objectData", objectData)

Print as follows

2) string as the key of the object

Let str1 = 'test'let srt2 =' 111'let objectData = {}; objectData [str1] = 'test' objectdata [srt2] = 'successful' console.info ("objectData", objectData)

Print as follows

After reading this, the article "how es6 converts strings into objects" has been introduced. If you want to master the knowledge points of this article, you still need to practice and use it yourself. If you want to know more about related articles, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report