15 lines
300 B
HTML
15 lines
300 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<title>Min-Max</title>
|
|
</head>
|
|
|
|
<script>
|
|
|
|
let arr = Array.from({length: 10}, () => Math.floor(Math.random() * 1));
|
|
document.write(arr);
|
|
document.write("Minimum: " + arr.min());
|
|
document.write("Maximum: " + arr.max());
|
|
</script>
|
|
|
|
</html>
|