Kramer usulida yechish
var min = Math.min(0, 150, 30, 20, -8, -200);
console.log(min);
var max = Math.max(0, 150, 30, 20, -8, -200);
console.log(max);
var ran = Math.random()*10;
console.log(parseInt(ran));
Math.round(4.7);
Math.round(4.4);
console.log(Math.round(4.7));
console.log(Math.ceil(4.4));
console.log(Math.floor(4.7));
var now = new Date();
var dayOfWeek = now.getDay();
if(dayOfWeek == 5) {
alert("Have a nice weekend!");
} else if(dayOfWeek == 0) {
alert("Have a nice Sunday!");
} else {
alert("Have a nice day!");
}
function giphissoblash(a, b) {
return Math.sqrt((a * a) + (b * b));
}
alert(giphissoblash(3, 4));
function giphissoblash(a,b) {
return Math.sqrt((a*a)+(b*b));
}
alert(giphissoblash(3,4))
Do'stlaringiz bilan baham: |