Quick Console Sandbox

do stuff

by nickadeemus2002

JavaScript

//create an object with custom-defined properties.
/*
{
	customProp1: prop1Data,
  customProp2: prop2Data,
  customProp3: prop3Data
}
*/

var customObject = {
	myProp1: 'this is my first prop',
  myProp2: 'this is my second prop',
  myProp3: 'this is my third prop'
};

console.log('customObject', customObject);
customObject['myProp4'] = 'this is my fourth prop';
console.log('customObject', customObject);