function createObj(str1,str2) how to create objects in javascript code example
Example 1: js create object with properties
function Car(make, model, year) {
this.make = make;
this.model = model;
this.year = year;
}
Example 2: how to make new paruser object
ParseUser parseuser = new ParseUser(); // It's just a simple class object