Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8301571
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T17:00:28+00:00 2026-06-08T17:00:28+00:00

Is this the correct way to make a javascript class with default properties (even

  • 0

Is this the correct way to make a javascript class with default properties (even though some here are null), yet also having the option to add a creation argument that can contain specific values for some properties listed in object format/json?

Also should i put any of this into Person’s prototype to save memory if I am creating many Person objects?

this is working for me but I wonder if it is a good way to do this ?

// PERSON Class -----------------------------------------------
 QM.Person=function(data)
 {
    /* Closure for this */
    var my = this;

    this.PersonID=null;
    this.Name_Last="";
    this.Name_First="";
    this.Date_Birth=null;
    this.Biography="";

    this.loadData=function(obj) {
        for (var i in obj) {
            if (my.hasOwnProperty(i)) {
                my[i] = obj[i];
            }
        }
    }

    this.loadData(data);
}

example of creating using this class:

jondoe = new Person();

bob = new Person({Name_First:"Bob",Name_Last:"Bar"});

jondoe.Name_First   /*  ""     */
bob.Name_First     /*   "Bob"  */
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T17:00:33+00:00Added an answer on June 8, 2026 at 5:00 pm

    To avoid repeating yourself you could build a list of keys you expect and also the default values to insert if they aren’t specified:

    MyType = function(data){
        var keys = this.keys,
            data = data || {},
            key
    
        for (key in keys) {
            if (keys.hasOwnProperty(key)) {
                if (data.hasOwnProperty(key)) {
                    this[key] = data[key];
                } else {
                    this[key] = keys[key];
                }
            }
        }      
    };
    
    MyType.prototype.keys = {
        personId: null,
        firstName: 'A default first name',
        lastName: ''
    };
    
    var o1 = new MyType();
    var o2 = new MyType({
        personId: 1,
        firstName: 'Override'
    });
    console.log(o1, o2);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is this the correct way to do it? <a id=load href=# class=btn load onclick=request(this);
What is the best way to make buttons(javascript) like this and what is the
My understanding for the right way to make a custom Error class in JavaScript
Is this the correct way to obtain the most negative double in Java? double
Is this the correct way to pass two ids in jQuery? I am having
Is this the correct way to update a ProgressBar when playing Media? I figured
This is a simple question: Is this a correct way to get an integer
Would this be the correct way of declaring that an XML element Cluster contains
I'm not sure if this is the correct way to synchronize my ArrayList .
I'm still not sure this is the correct way to go about this, maybe

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.