[JS] 배열 선언 및 랜덤 함수 활용

2018. 3. 5. 13:57
반응형

[JS] 배열 선언 및 랜덤 함수 활용



▼배열 선언 및 랜덤 함수 활용 예제


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 
// JavaScript
 
function run(num){
 
        // Math.floor 함수
        // random 함수
        // 사용
 
 
        //+1은 1부터 시작 하기 위함
         var run_result = Math.floor(Math.random()*num+1);
 
         return run_result ;
 
        
 
        //배열에 담겨져 있는 것을 랜덤으로 빼내보자!!
 
        function rndText(){
 
            var array_color = ['컬러1','컬러2','컬러3','컬러4','컬러5'];
 
            var run_result = Math.floor(Math.random()*(array_text.length-1));
 
            return array_color [run_result];
 
        }
 
    }
 
 //Tip PHP shuffle 함수이용 과 동일
 
    $array_color = ['컬러1','컬러2','컬러3','컬러4','컬러5'];
 
    shuffle($array_color);
 
 
cs


반응형

BELATED ARTICLES

more