Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function greet() {
- var todaydate = new Date();
- var timeis = todaydate.getTime();
- todaydate.setTime(timeis);
- var houris = todaydate.getHours();
- if (houris < 9) display = "Pagi";
- else if (houris < 14) display = "Siang";
- else if (houris < 18) display = "Sore";
- else display = "Malam";
- return display;
- }
Add Comment
Please, Sign In to add comment