My Development Notes

Programming Made Easier


Tag: key-value-pairs-javascript

  • Key-Value Pairs in JavaScript Objects

    Key-Value Pairs in JavaScript Objects

    JavaScript objects have keys (or properties), and values. Let’s take a look at this JS object example with some keys and values, keys are on the left, values on the right : Now let’s add some additional key value pairs to the object. Here’s one way to do that: So, if you add the above…