What are the security related issues in JavaScript scripts?
Answer Posted / naveen das
Basically the source code of the Javascript will be visible
when we select the source,hence the javascript part of the
code is fully transparent.
Secondly javascripts can be disabled on the browser easily
| Is This Answer Correct ? | 20 Yes | 4 No |
Post New Answer View All Answers
What is closure?
What is a function constructor?
Consider the following code: 1 2 3 4 5 (function() { var a = b = 5; })(); console.log(b); what will be printed on the console?
Are javascript variables case sensitive?
What is "strict mode" and how is it used in JavaScript?
What is the most popular javascript library?
How to have an element invoke a javascript on selection, instead of going to a new url?
How would you compare two objects in JavaScript?
Name the different types of pop up boxes in Javascript?
Which keyword is used to print the text in the screen?
What is a boolean in javascript?
What is hoisted in javascript?
What is the purpose of 'this' operator in JavaScript?
Why is var better than let?
How to open a window with no toolbar, but with the location object?