Can i create an login account with javascript ,without using
database ?
Answers were Sorted based on User's Feedback
Answer / rajesh
Javascript is one which loads on your page load. If you
want to test it for dummy app. you can.
| Is This Answer Correct ? | 22 Yes | 4 No |
Answer / 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 |
Answer / guest
no it is not possible in anyway because it don't work ,but
you can make it for any practice session.
| Is This Answer Correct ? | 22 Yes | 11 No |
Answer / karthi.6863
No friend ...it is not possible...java script is use for
validation...
| Is This Answer Correct ? | 14 Yes | 7 No |
Answer / rajesh
if authentication is not required then we can create
without using database.
if authentication required for user the we cant create
login without database
| Is This Answer Correct ? | 9 Yes | 2 No |
What is the difference between the operators '==' and '==='?
Explain window.onload and ondocumentready?
Taking a developer's perspective, do you think that that javascript is easy to learn and use?
How do you write an if statement in javascript?
Is array a data type in javascript?
Difference between Pure functions Vs. Impure functions in javascript?
How to use strings as array indexes using javascript?
Consider the following code: 1 2 3 4 5 (function() { var a = b = 5; })(); console.log(b); what will be printed on the console?
What is Associative Array? How do we use it?
Can you run javascript in notepad?
What is console.log()?
Can you have a function within a function in javascript?