What is the main difference between Client side JavaScript
and and Server side Java Script?
Answer Posted / kannappanksk
Clientside Javascript encompasses the core language plus
extras such as the predefined objects, only relevant to
running Javasript in a browser.The clientside javascript is
embedded directly in the HTML pages and is interpreted by
the browser completly at the run time.
Serverside javascript also encompasses the core language
plus extas as the predefined objects and functions only
relevant to running Javasript in a server.The serverside
javascripts are compiled before they are deployed.
| Is This Answer Correct ? | 34 Yes | 4 No |
Post New Answer View All Answers
What is the role of javascript in html?
What is the naming conventions for the variables in javascript?
Is javascript insecure?
Why jquery is used instead of javascript?
How to call a function in every x seconds in javascript?
What is the difference between test () and exec () methods?
What is Date object in JavaScript?
what does javascript null mean?
What is an asynchronous programming? Why is it important in javascript?
Name the datatypes of javascript?
What are different types of popup boxes available in javascript?
How can you do a character count in javascript?
What is Associative Array? How do we use it?
Write a main method that prompts the user to enter the starting population, birth and death rates, and the number of years. The input birth and death rates cannot be negative, the starting population cannot be less than 2, and the number of years greater than 0. If the user enters an invalid value, this program will prompt user to re-enter the value until a valid value has been read. When all input values are valid, call on the methods above to compute estimated population and print result.
Which built-in method calls a function for each element in the array?