Hi Friends đź‘‹,

Welcome To Infinitbility! ❤️

To convert string to object key in javascript, use the basic syntax of assign value in object using dynamic keys for example obj["your_key"] = "value".

In the following example, we will take example string and convert it on object key.

let obj = {id: 1, name: "infinitbility"};

let str = "domain";

obj[str] = "infinitbility.com";

console.log(obj) // {id: 1, name: 'infinitbility', domain: 'infinitbility.com'}

Today, I’m going to show you How do i convert string to object key in javascript, as above mentioned here, I’m going to use some basic syntax which can help to assign key value pair dynamically.

Let’s start today’s tutorial how do you convert string to object key in javascript?

In this example, we will do

  1. Take an example of object
  2. Take an example of string
  3. Use string to assign new key value pair
  4. Console the output
let obj = {id: 1, name: "infinitbility"};

let str = "domain";

obj[str] = "infinitbility.com";

console.log(obj) // {id: 1, name: 'infinitbility', domain: 'infinitbility.com'}

In the above exampls, we have taken example of adding key value pair dynamically, Let’s check the output.

JavaScript, convert string to object key in javascript example
JavaScript, convert string to object key in javascript example

I hope it’s help you, All the best 👍.