en.javascript.info/1-js/07-object-inheritance/09-class/1-rewrite-to-class/source.view/index.html
Ilya Kantor 9ad9063d00 up
2016-11-28 21:35:42 +03:00

18 lines
246 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Console clock</title>
<meta charset="utf-8">
</head>
<body>
<script src="clock.js"></script>
<script>
let clock = new Clock({template: 'h:m:s'});
clock.start();
</script>
</body>
</html>