Skip to content

Instantly share code, notes, and snippets.

@imura-moto
imura-moto / Hello World
Last active January 25, 2020 13:03
セミコロンを足しました。
var str = "Hello World";
/*
* ただHello Worldと言う関数
*/
var disp = function(){
console.log(str);
alert(str);
}