ブラケットでこのエラーが発生します。
私がJSファイルを開いたのは文字通り2回目だということを強調したいと思います。私が強調したように、私はEslintとnode.jsが何であるか私には手掛かりがないことを強調したいです。
StackOverflowおよび他のサイトのすべての修正は、上記のエンティティがどのように機能するかを知っていることを前提としています。
問題を修正し、何か新しいことを学ぶために、完全なnewbを助けてください。
前もって感謝します!
これがコードの一部ですが、それが何かに役立つとは思いません。
Html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JavaScript</title>
</head>
<body>
<h1>Javascript starter</h1>
<script src=Script.js> </script>
</body>
</html>
Javascript:
var now = 2018;
var yearJohn = 1989;
var fullAge = 18;
//Multiple operators
var isFullAge = now - yearJohn >= fullAge; //true
сonsole.log(isFullAge);
//Grouping
var ageJohn = now - yearJohn;
var ageMark = 35;
var average = (ageJohn + ageMark)/2;
console.log(average);
// Multiple assigments
var x, y;
x = y = (3 + 5) * 4 - 6; // 8 * 4 - 6 // 32 - 6 // 26
console.log(x, y);
// More operators
x *= 2;
console.log(x);
x += 10;
// eslint-disable-next-line no-console
console.log(x);
以下を.eslintrc.js
ファイルに追加します
"no-console": ["error", { "allow": ["warn", "error"] }]
Console.logをdocument.writeに変更してみてください
そして、ブラウザでhtmlファイルを開きます
var now = 2018;
var yearJohn = 1989;
var fullAge = 18;
//Multiple operators
var isFullAge = now - yearJohn >= fullAge; //true
document.write(isFullAge);
//Grouping
var ageJohn = now - yearJohn;
var ageMark = 35;
var average = (ageJohn + ageMark)/2;
document.write(average);
// Multiple assigments
var x, y;
x = y = (3 + 5) * 4 - 6; // 8 * 4 - 6 // 32 - 6 // 26
document.write(x, y);
// More operators
x *= 2;
document.write(x);
x += 10;
// eslint-disable-next-line no-console
document.write(x);