Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

JavaScript SyntaxError – Missing name after . operator

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

This JavaScript exception missing name after . operator occurs if the dot operator (.) is used in the wrong manner for property access.

Message:

SyntaxError: missing name after . operator

Error Type:

SyntaxError

Cause of Error: The dot operator (.) is used to access the property. Users will have to provide the name of the properties to access. Somewhere the dot operator is used with the square bracket or “+” is used with the dot operator, Both cause problems.

Example 1: In this example, the property is accessed with the dot operator along with a square bracket, so the error has occurred.

Javascript




let GFG_Obj = {
    prop:
    {
        prop1: "val1",
        prop2: "val2"
    }
};
console.log(GFG_Obj.[prop].[prop1]);

Output(In console):

SyntaxError: missing name after . operator

Example 2: In this example, the property is accessed with the dot operator along with “+”(concatenation), so the error has occurred.

Javascript




let GFG_Obj = {
    prop:
    {
        prop1: "val1",
        prop2: "val2"
    }
};
let k = 2;
console.log(GFG_Obj.prop."prop" + k);

Output(In console):

SyntaxError: missing name after . operator
My Personal Notes arrow_drop_up
Last Updated : 22 May, 2023
Like Article
Save Article
Similar Reads
Related Tutorials