タグ

strictに関するcode404のブックマーク (1)

  • use strict 怖い - hogehoge @teramako

    Perlの話ではない、JavaScriptの話なのである。 あと、タイトルはまんじゅう怖い的な意味なのである ECMAScript 5 strict mode in Firefox 4 ? Mozilla Hacks ? the Web developer blog Firefox4.0b10pre に ECMAScript5 の Strict モードが実装されましたーパチパチー で、自分がはまった罠について書いておくよ。まあ上記ページに書かれていることなんだけどね。 "caller", "callee" in arguments オブジェクト 使うとエラー (function() { "use strict"; return arguments.callee; })(); TypeError: 'caller', 'callee', and 'arguments' properties

    use strict 怖い - hogehoge @teramako
    code404
    code404 2011/03/29
    "caller", "callee" in arguments オブジェクト、予約語、8進数を使うとエラー。
  • 1