From 9128925513e65425aa6ac26396ec24f90de02ac6 Mon Sep 17 00:00:00 2001 From: CamillaRossato <149941211+CamillaRossato@users.noreply.github.com> Date: Mon, 5 Aug 2024 09:40:39 +0200 Subject: [PATCH 1/2] fix typo --- 1-js/02-first-steps/01-hello-world/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/01-hello-world/article.md b/1-js/02-first-steps/01-hello-world/article.md index 156e1cfa2..8cf9a18ac 100644 --- a/1-js/02-first-steps/01-hello-world/article.md +++ b/1-js/02-first-steps/01-hello-world/article.md @@ -112,7 +112,7 @@ Questo non funziona: Dobbiamo scegliere fra le due possibilità: script esterno ` From f5276e3761dfcf26bc362bf6ab25f8ec8e5e0697 Mon Sep 17 00:00:00 2001 From: CamillaRossato <149941211+CamillaRossato@users.noreply.github.com> Date: Mon, 5 Aug 2024 11:33:36 +0200 Subject: [PATCH 2/2] fix typo --- 1-js/02-first-steps/04-variables/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/04-variables/article.md b/1-js/02-first-steps/04-variables/article.md index a2574d9f2..68987f7fe 100644 --- a/1-js/02-first-steps/04-variables/article.md +++ b/1-js/02-first-steps/04-variables/article.md @@ -224,7 +224,7 @@ let return = 5; // nemmeno "return", errore! Normalmente, abbiamo bisogno di definire variabili prima di utilizzarle. Ma una volta, era possibile definire una variabile semplicemente assegnandogli un valore, senza `let`. Questo è ancora possibile se non utilizziamo `use strict`. E' necessario per mantenere la compatibilità con i vecchi script. ```js run no-strict -// da notare: no si utilizza "use strict" in questo esempio +// da notare: non si utilizza "use strict" in questo esempio num = 5; // la variabile "num" se non esiste già