Home > Web Front-end > Front-end Q&A > How to convert string into object in es6

How to convert string into object in es6

青灯夜游
Release: 2022-03-23 15:45:52
Original
2715 people have browsed it

Conversion method: 1. Use the "let object name = {key1:"String 1",key2:"String 2",...}" statement to convert the string into the value of the object ; 2. Use the statement "let object name = {}; object name ["string"] = 'value';" to convert the string into the key of the object.

How to convert string into object in es6

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

es6 Convert strings into objects

1) Strings as the value of objects

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

Print as follows

How to convert string into object in es6

2) String as the key of the object

let str1 = 'test'
let srt2 = '111'
let objectData = {};
objectData[str1] = '测试'
objectData[srt2] = '成功'
console.info("objectData",objectData)
Copy after login

Print as follows

How to convert string into object in es6

【Related recommendations: javascript video tutorial, web front-end

The above is the detailed content of How to convert string into object in es6. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
es6
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template