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