ホームページ > 記事 > ウェブフロントエンド > DayMG) の DaysOfJavaScript
完璧よりも少しずつの方が良いですよね?
二重等しいおよび完全に等しい。
console.log(10 == 10); // True console.log(10 == "10"); // True console.log(10 === 10); // True console.log(10 === "10"); // False
スイッチを思い出しました。
var hoge; switch(hoge) { case 1: console.log("hoge"); // If hoge == 1, output will be "hoge" and "hogehoge" case 2: console.log("hogehoge"); // If hoge == 2, output will be "hogehoge" break; case 3: console.log("fuga"); // If hoge == 3, output will be "fuga" break; }
学習されたオブジェクト
var exampleObject = { "hoge": "ほげ", "hogehoge": "ほげほげ", "fuga": "ふが", } /* Dictionary in Python might be similar data structure? We can add a content with operation like below*/ exampleObject.fugafuga = "ふがふが"; // or... exampleObject["fugafuga"] = "ふがふが"; // If additional element is same as last element, additional one is ignored. // (It's just my guess. I've googled but I couldn't find information about it)
以上がDayMG) の DaysOfJavaScriptの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。