Skip to content

Instantly share code, notes, and snippets.

View omas's full-sized avatar

Omas Naohiko omas

  • Private
  • Okinawa, Japan
View GitHub Profile
function Aisatsu(){
output("おはよう");
output("こんにちは");
output("こんばんは");
}
Aisatsu();
function answer1(){
// 変数を使ったパターン ちょっとインチキ
var myArray = ["c", "o", "d", "e", "s", "t", "u", "d", "y"];
var start = 1;
var end = 4;
for(var count = start; count < end; count++) {
output(myArray[count]);
}
}