Add JavaScript object attributes
"use strict";
var email = {
"from" : "js@bar.com",
"to" : [ "foo@bar.com", "qux@bar.com" ],
};
console.log(email);
email["text"] = "Content";
console.log(email);
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
"use strict";
var email = {
"from" : "js@bar.com",
"to" : [ "foo@bar.com", "qux@bar.com" ],
};
console.log(email);
email["text"] = "Content";
console.log(email);