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 9129533
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:46:15+00:00 2026-06-17T07:46:15+00:00

If null value of javascript is an empty object so why can’t add a

  • 0

If null value of javascript is an empty object so why can’t add a property to it?
the below code clears my question:

var a = null;

typeof a;
>>> "object"

a.name = 'name';
>>> TypeError: Cannot set property 'name' of null

var a = new Object();

typeof a;
>>> "object"

a.name = 'name';
>>> "name"
  • 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-17T07:46:17+00:00Added an answer on June 17, 2026 at 7:46 am

    By definition neither the null value nor the undefined value have any properties, nor can any properties be added to them.

    This is summarized nicely for null:

    primitive value that represents the intentional absence of any object value.

    And likewise, for undefined:

    primitive value used when a variable has not been assigned a value.

    (null is the only value of the Null-type and undefined is the only value of the Undefined-type.)

    Now, for the implementation goodies:

    Both of these types represent primitives and the behavior of "primitiveValue.Property" is covered by the internal ToObject method. (See GetValue/PutValue for the start of the rabbit hole.)

    From 9.9: ToObject:

    The abstract operation ToObject converts its argument to a value of type Object according to ..

    • Undefined => Throw a TypeError exception.
    • Null => Throw a TypeError exception.
    • (and so on)

    As far as the comments, see 11.4.3: The typeOf Operator:

    Return a String determined by Type(val) according to ..

    • Undefined => "undefined"
    • Null => "object"
    • (and so on)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

IN JAVA CODE IN JSP as below i m getting null value for fieldnoOfRecords.
can we assign null value to struct type of variable? struct MyStruct { }
How do you replace a NULL value in the select with an empty string?
when selecting a column that can contains a NULL value I get an exception
Can someone tell me why I get the null value for activationLink variable in
In the below javascript, this refers to Car object and search_id refers to the
I have the following code, and the javascript console in chrome says Can't read
Is it possible to check a querystring for a not null value using javascript?
The following snippet of code converts a Javascript object into an XML string using
In C#, Asp.net, I'm creating Javascript code through my code-behind : var silverlightControl =

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.