sample javascript objects code example
Example 1: create object javascript
const object = {
something: "something";
}
Example 2: declare an object in jquery\
var obj = {
objectname: "something here",
};
const object = {
something: "something";
}
var obj = {
objectname: "something here",
};