함수 rand choice()

Jmnote (토론 | 기여)님의 2023년 3월 9일 (목) 12:48 판 (새 문서: 분류: 랜덤 ==개요== ;함수 rand_choice() ==JavaScript== 분류: JavaScript {{참고|JavaScript rand_choice()}} <syntaxhighlight lang='javascript' run> const fruits = [...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

함수 rand_choice()

2 JavaScript

const fruits = ['apple', 'banana', 'melon'];
const f = fruits[Math.floor(Math.random() * fruits.length)];
console.log(f);

3 같이 보기

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