Javascriptオブジェクト(http://javascriptissexy.com/javascript-objects-in-detail/)の記事を読んでいたので、メモ帳に次のコードをコピーして貼り付けました。 2883.87m)。コンソールを開くと、コンソールはSyntaxErrorを報告します。 誰かがなぜアイデアを持っていますか?すべてが大丈夫です。Javascript - SyntaxError:オブジェクトの作成中に無効または予期しないトークン - 不可視の文字
// We have been using dot notation so far in the examples above, here is another example again:
var book = {title: "Ways to Go", pages: 280, bookMark1:"Page 20"};
// To access the properties of the book object with dot notation, you do this:
console.log(book.title); // Ways to Go
console.log(book.pages); // 280
どこで実行しましたか?ブラウザ(どちらのブラウザ)では、nodejsでは、まったく別のものがありますか? – UnholySheep
コンソールにコードをコピーして貼り付けると、2つの目に見えない文字が表示されました。これが理由です。 –
コピー/貼り付けでこれらのエラーの原因となる目に見えない文字を拾うことができます。手でコードを入力するだけです。 – Pointy