29
loading...
This website collects cookies to deliver better user experience
const whatever = {
base: 'anything',
port: 123456,
secret: 'just-to-illustrate-asdjf23u',
port: 123568,
};
{
base: 'anything',
secret: 'just-to-illustrate-asdjf23u',
port: 123568,
}
'use strict'
const test = {
fizz: 'fizz',
fizz: 'buzz'
};
console.log(test); // { fizz: 'buzz' }
Each own property of an object must each have a key value that is distinct from the key values of the other own properties of that object - https://262.ecma-international.org/11.0/#sec-object-type
const test = Object.freeze({
fizz: 'fizz',
fizz: 'buzz'
});
console.log(test); // { fizz: 'buzz' }