List some of the disadvantages of javascript.
Answers were Sorted based on User's Feedback
The following are some of JavaScript's drawbacks:
No multithreading support
No multiprocessing support
File reading and writing are prohibited.
Networking apps are not supported.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / Santosh Raj
JavaScript can be difficult to learn for beginners. It has poor support for complex data structures compared to languages like Java or C++. Also, due to its execution on the client side, it can potentially expose sensitive data and is vulnerable to security threats.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the output of below code var car = new Vehicle("Honda", "white", "2010", "UK"); console.log(car); function Vehicle(model, color, year, country) { this.model = model; this.color = color; this.year = year; this.country = country; }
How do you define a class and its constructor?
print the following using loop. 54321 4321 321 21 1
2 Answers Delhi Public School,
What is the role of break and continue statements?
Do I need var in javascript?
What is javascript ‘strict mode’?
What are the requirements of web application using javascript?
Write about the errors shown in javascript?
What is an asynchronous programming? Why is it important in javascript?
What would be the result of 3+2+”7″?
Difference between Pure functions Vs. Impure functions in javascript?
We are facing problem with the compatibilty of IE 7 and IE 6.We are calling a showModal window that is working fine in IE6 but with IE7 it opens a new Window and Data is not getting poputaled.In some pages it Gives an error "The webpage you are viewing is trying to Close the window.Do you want to close this window".