Newer
Older
2021-S.Keigo1128 / hello.js
@Sato Keigo Sato Keigo on 8 Oct 2021 248 bytes こめんと追加
// その1: HTML本文中に出力する
document.write("Hello, world!(1)");
// その2: ブラウザコンソールに出力する
console.log("Hello, world!(2)");
// その3: 警告ウィンドウに出力する
alert("Hello, world!(3)");
// -->