LoginSignup
0
0

More than 3 years have passed since last update.

javascript関数ドリル 初級編last関数の実相のアウトプット

Posted at

last関数の課題内容

   ↓
https://js-drills.com/blog/last/

last関数の取り組む前の状態

なんとなく行けそうだった

last関数に取り組んだ後の状態

index番号を忘れていて-1をつけ忘れていた

last関数の実装コード(答えを見る前)

function last(array) {
  return array[array.length - 1];
}

console.log( last([1, 2, 3]) );

last関数の実装コード(答えを見た後)

function last(array) {
  return array[array.length - 1];
}

console.log( last([1, 2, 3]) );
// => 3
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