function ObjSaudacao() { this.Mostra = function() { var data = new Date(); var hora = data.getHours(); if(hora >=0 && hora < 12) document.write('BOM DIA!'); else if(hora >= 12 && hora < 18) document.write('BOA TARDE!'); else document.write('BOA NOITE!'); } return this; } var oSaudacao = new ObjSaudacao; oSaudacao.Mostra();