Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 649 Bytes

README.md

File metadata and controls

40 lines (33 loc) · 649 Bytes

Clock.js

A simple clock for javascript

###how to use

<script src="path-to-your/Clock.js"></script>
var clock = new Clock();

clock.onsec = function(){
    console.log('this has ran ' + this.sec + 'seconds');
};
    
clock.start();

more for below

###properties

property description
hour hours clock has ran
min mins clock has ran
sec secs clock has ran

###method

method description
start start clock
stop stop clock
reset stop and reset clock

###event

event description
onhour each hour call
onmin each min call
onsec each sec call