old-tag popo-ask 220215~~

popo-fir popo-la asked Feb 15,2022
0

Be specificIf you ask a vague question, you’ll get a vague answer. But if you give us details and context, we can provide a useful, relevant answer.





<script_>
var points = [40, 100, 1, 5, 25, 10];
document.getElementById("demo").innerHTML = myArrayMin(points);


function myArrayMin(arr) {
  return Math.min.apply(null, arr);
}
</script_>


<script_>
var myNumber = 32;
document.getElementById("demo").innerHTML =
"32 = " + "<br>"" Decimal " + myNumber.toString(10) + "<br>" +
" Hexadecimal " + myNumber.toString(16) + "<br>" +
" Octal " + myNumber.toString(8) + "<br>" +
" Binary " + myNumber.toString(2);
</script_>


  • Your Answer(2)
Upload photo
You can only upload 5 files in total. Each file cannot exceed 2MB. Supports JPG, JPEG, GIF, PNG, BMP
0 / 10000
    Browse other questions tagged or ask your own question.