en.javascript.info/1-js/9-object-inheritance/08-class-inheritance/4-clock-class-extended/solution.view/index.html
Ilya Kantor f99574f53b up
2016-11-14 16:31:21 +03:00

26 lines
No EOL
380 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Часики в консоли</title>
<meta charset="utf-8">
</head>
<body>
<script src="clock.js"></script>
<script src="extended-clock.js"></script>
<script>
var lowResolutionClock = new ExtendedClock({
template: 'h:m:s',
precision: 10000
});
lowResolutionClock.start();
</script>
</body>
</html>