Posts by Felipe Borges • 129 points
3 posts
-
1
votes2
answers1383
viewsA: Authentication of user registration by email in Node.js
Take a look at these links, which contains a step by step how to do. https://www.npmjs.com/package/email-verification https://codeforgeek.com/2014/07/node-email-verification-script/…
-
7
votes2
answers2914
viewsA: How to create object array in javascript?
Use the array.push() to add an item at the end of the array. var sample = new Array(); sample.push(new Object()); To do this "n" times using loop: var n = 100; var sample = new Array(); for (var i =…
javascriptanswered Felipe Borges 129 -
1
votes1
answer53
viewsA: Automatically reload page at specified time
Try the Javascript below: function refreshAt(hours, minutes, seconds) { var now = new Date(); var then = new Date(); if(now.getHours() > hours || (now.getHours() == hours &&…
javascriptanswered Felipe Borges 129