JAVASCRIPT CODING EXERCISES: Coding For Beginners by TAM JJ

JAVASCRIPT CODING EXERCISES: Coding For Beginners by TAM JJ

Author:TAM, JJ [TAM, JJ]
Language: eng
Format: epub
Published: 2020-10-27T00:00:00+00:00


Convert number to hours and minutes

HTML CODE

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta name="viewport" content="width=device-width">

<title>JavaScript program to convert a given number to hours and minutes.</title>

</head>

<body>

</body>

</html>

JAVASCRIPT CODE

function time_convert(num)

{

var hours = Math.floor(num / 60);

var minutes = num % 60;

return hours + ":" + minutes;

}

console.log(time_convert(71));

console.log(time_convert(450));

console.log(time_convert(1441));



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.