Valid property names, property assignment and access in JavaScript

前端 未结 2 745
旧时难觅i
旧时难觅i 2021-01-19 01:26

Updated Question

What, exactly, qualifies as a valid property name in Javascript? How do various methods of property assignment differ? And how does the property n

相关标签:
2条回答
  • 2021-01-19 02:21

    Short Answer

    Object property names can be any valid identifier, numeric literal, or string literal (including the empty string).

    With that said, there are some potentially confusing intricacies to keep in mind about JavaScript property names, as described below.

    And unless you're working with valid (non-negative integer) array indexes, it's a good idea to explicitly assign all numerical property names as strings.

    Negative Numbers

    What might look like a negative number is actually an expression — something property names do not support.

    // SyntaxError
    const obj = { -12: 'nope' };
    

    Fortunately, bracket notation handles expressions for us.

    // Successful property assignment.
    const obj = {};
    obj[-12] = 'yup';
    

    Typecasting

    All property names are typecasted into strings before being stored.

    const obj = {
      12: '12'
    };
    
    console.log(typeof Object.keys(obj)[0]); // -> string
    

    Parsing

    But even before typecasting occurs, keys are parsed according to the syntax used, and transformed into a decimal literal.

    const obj = {
      // Valid string literal
      '022': '022',
    
      // Interpreted as decimal
      6: '6',
    
      // Interpreted as floating-point
      .345: '0.345',
    
      // Interpreted as floating-point
      1.000: '1',
    
      // Interpreted as floating-point
      8.9890: '8.989',
    
      // Interpreted as decimal
      000888: '888',
    
      // Interpreted as octal
      0777: '511',
    
      // Interpreted as hexadecimal
      0x00111: '273',
    
      // Interpreted as binary
      0b0011: '3',
    };
    
    
    /* Quoted property name */
    console.log(obj['022']); // "022"; as expected
    console.log(obj[022]); // undefined; 022 is an octal literal that evaluates to 18 before our lookup ever occurs
    
    /* Valid (non-negative integer) array index */
    console.log(obj[6]); // "6"; as expected
    console.log(obj['6']); // "6"; as expected
    
    /* Non-valid array index */
    console.log(obj[0x00111]); // "273"; we're accessing the property name as it was assigned (before it was parsed and typecasted)
    console.log(obj['0x00111']); // undefined; after parsing and typecasting, our property name seems to have disappeared
    console.log(obj['273']); // "273"; there it is, we found it using the evaluation of our original assignment
    
    0 讨论(0)
  • 2021-01-19 02:32

    Answer for 1st question:

    Yes, the statement given in the MDN guide is not 100% accurate, but in your daily work it'd be better to follow it as rule. You really don't need to create properties names which are numbers.

    Answer for 2nd question:

    A property name may not start with a digit but a property name that is a number without any other characters in its name is fine.

    This exception exists because the properties with number for name as the same as indexes.

    Let's try this:

    var obj = {7: "abc"};
    obj[7]; // works fine
    obj.7; // gives an error (SyntaxError)
    

    Now try to call Array.push on the object and observe what happens:

    Array.prototype.push.call(obj, "xyz");
    console.log(obj);
    console.log(obj[0]);
    
    // Prints
    Object {0: "xyz", 7: "abc", length: 1}
    "xyz"
    

    You can see that few new properties (one with name 0 and another with name length) have been added to the object. Moreover, you can use the object as an array:

    var obj = { "0": "abc", "1": "xyz", length: 2 };
    
    Array.prototype.pop.call(obj); // Returns: "xyz"
    Array.prototype.pop.call(obj); // Returns: "abc"
    

    You can use array's methods on objects and this is called Duck Typing.

    Arrays are nothing more than objects with some predefined methods.

    From MDN:

    Array elements are object properties in the same way that length is a property, but trying to access an element of an array with dot notation throws a syntax error, because the property name is not valid. There is nothing special about JavaScript arrays and the properties that cause this. JavaScript properties that begin with a digit cannot be referenced with dot notation and must be accessed using bracket notation.

    Now you can understand why a number for property name is valid. These are called just indexes and they are used in JavaScript arrays. And since JavaScript needs to be consistent with other languages, numbers are valid for indexes/properties names.

    Hope this makes it clear.

    Here are some interesting articles:

    • JavaScript identifiers (in ECMAScript 5)
    • JavaScript identifiers (in ECMAScript 6)
    0 讨论(0)
提交回复
热议问题