简体   繁体   中英

How to get the first value from dynamic values

I want to store the first value from variable which always change. My idea use array to store it. Are there others methods to achieve it?

let arr = [];
function test() {
    let r;
    r = Math.random() * 100;        //emulate to get the value dynamically
    arr.push(r);
    return r;
}

alert(test());
alert(test());
alert(arr[0]);      //Always get the first value 

Here the variable 'res' is assigned to null initially and checked inside the function for null, if res === null you can store the first occurrence to it. for the please be aware of 'let' and 'var' scopes

 var res = null; function test() { let r; r = Math.random() * 100; //emulate to get the value dynamically if(res === null) { res = r; } return r; } alert(test()); alert(test()); alert(res);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM