0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Hello World

Posted at

Qiitaに記事を投稿する日が来るとは夢にも思わなかった。この質のいい記事が多いQiitaに、僕は勇気を出して、何らかの記事を投稿したい!ただ、テーマがないので、思いついたことを書いて行こうと思う!!みなさんよろしく!!お願いします!!!

初めて記事を書いてみるよ!

  • hello
  • world
  • hello world

これで僕もQiitaデビュー

さぁ引用だ!

「われわれは訊ねる、まだ何が冒険されうるのだろうか、生そのものよりも、すなわち冒険そのものよりも、一体何がより冒険的なのだろうか、つまり何が、存在者の存在よりもより冒険的なのだろうかと」
マルティン・ハイデッガー

コードってどんな感じになるんだ!

よしコードも書いてみよう!!!

var ppap = function() {

	let ppap1 = "pen";
	let ppap2 = "apple";
	let ppap3 = "pineapple";

	let defValue = 1
	let setCounter = 3;

	let minValue = 1;
	let maxValue = 2;

	let space = 

	try {

		for(var i = defValue; i <= setCounter; i++) {
		    if(i <= minValue) {
		       console.log(i+" "+ppap2+" "+ ppap1);
		    } else if(i <= maxValue && i >= minValue) {
		       console.log(i+" "+ppap1 +" "+ ppap3 +" "+ ppap2 +" "+ ppap1);
		    }  else {
		       throw new Error('( ゚д゚)');
		    }
		}

	}catch(e) {
	    console.error(e.message);
	}

}

ppap();
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?