Javascript-форум (https://javascript.ru/forum/)
-   Общие вопросы Javascript (https://javascript.ru/forum/misc/)
-   -   можно ли оптимизировать do{...}while(); скрипт под катом (https://javascript.ru/forum/misc/52708-mozhno-li-optimizirovat-do%7B-%7Dwhile-%3B-skript-pod-katom.html)

Erolast 03.01.2015 11:16

while (true) {
    let str = rand(1, 10);
    str === 1 ? break : alert(str);
};

bes 03.01.2015 23:15

function rand(min,max){return Math.floor(Math.random()*(max-min+1))+min;};
[rand(1, 10)].map(function (value, index, mas) {
	mas = [rand(1, 10)];
	if (value != 1) mas = [];
	alert(value);
});


Часовой пояс GMT +3, время: 21:48.