LoginSignup
2
0

More than 5 years have passed since last update.

【教えてエロイ人】javascript の use strict と prompt

Posted at

use strict ってよく知らなかったのですが……。

whatyourname.html
<!DOCTYPE HTML>
<html>
  <head>
    <script>
      'use strict';
      name = prompt('What your name?', 'Jhon');
      alert(`Hello, ${name}`);
      age = 42;
    </script>
  </head>
  <body></body>
</html>

name は (正しく?) 代入されるケド、age の代入は Uncaught ReferenceError: age is not defined と (そういう意味では正しく) エラーになるのですorz

なにゆえ……。

chrome でも safari でも同様だから、ブラウザ依存じゃ無いっぽいし……。

2
0
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0