Skip to content
Open
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
2 changes: 1 addition & 1 deletion 1-js/04-object-basics/01-object/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ Studieremo più nel dettaglio `__proto__` nel [capitolo](info:prototype-inherita

Un'importante caratteristica degli oggetti, in Javascript, è che è possibile accedere a una qualsiasi proprietà. Non ci sarà alcun errore se la proprietà non esiste!

L'accesso ad una variabile non esistente ritornerà `undefined`. Possiamo quindi facilmente verificare se una properietà esiste:
L'accesso ad una variabile non esistente ritornerà `undefined`. Possiamo quindi facilmente verificare se una proprietà esiste:

```js run
let user = {};
Expand Down