Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/en/object/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Everything in JavaScript acts like an object, with the only two exceptions being
[1, 2, 3].toString(); // '1,2,3'

function sayHello(){}
sayHello.bar = 1;
sayHello.bar; // 1
sayHello.count = 1;
sayHello.count; // 1

A common misconception is that number literals cannot be used as
objects. That is because a flaw in JavaScript's parser tries to parse the *dot
Expand Down