함수 last()

Jmnote (토론 | 기여)님의 2016년 3월 9일 (수) 01:25 판 (Jmnote 사용자가 다언어 last() 문서를 함수 last() 문서로 옮기면서 넘겨주기를 덮어썼습니다)
  다른 뜻에 대해서는 리눅스 last 문서를 참조하십시오.
  다른 뜻에 대해서는 jQuery .last() 문서를 참조하십시오.
  다른 뜻에 대해서는 The End (밴드) 문서를 참조하십시오.
.last
end()

1 PHP

$fruits = array('apple', 'banana', 'cranberry');
echo end($fruits);
# cranberry

2 Python

fruits = ['apple', 'banana', 'cranberry']
print fruits[-1]
# cranberry

3 Ruby

arr = ['q', 'r', 's', 't']
puts arr.last 
# t

4 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}