Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <h2>Avec "use strict":</h2> <h3>À l'intérieur des fonctions, le mot-clé "this" n'est plus l'objet global s'il n'est pas spécifié :</h3> <script> "use strict"; function myFunction() { alerter(cela); } myFunction(); </script> </body> </html>