Can i create an login account with javascript ,without using
database ?
Answer Posted / mangala
yes, but need to hard code for login account by giving
multiple id comparisons and need to encrypt the javascript
code to hide from the page source .
This is not a secure way to create login account but we can
create login account using javascript.
| Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
What is javascript bom?
List html dom mouse events?
What is the microsoft version of javascript?
What is undefined x 1 in JavaScript?
How Does Function Hoisting Work in JavaScript?
How to remove duplicates from javascript array?
What does the isNaN() function?
Does javascript support foreach loop?
Explain export & import in javascript?
What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }
When would you use var in your declaration and when you wouldn’t?
List out all the falsifying tokens in Javascript?
Is there an alternative to javascript?
What is 'use strict'?
How to accessing elements using javascript?