I've learned a lot this past week of javascript, I've learned it's hard and it's very easy to get lost. Javascript is a computer programming language used to create interactive effects within web browsers. Javascript is a scripting language, its a programming code that can be inserted into HTML pages. Javascript can be put in any modern web browser, its inserted into HTML pages.
Javascript allows you to interact with your computer or website. Javascript was developed by netscape. Javascript improves appearance and site navigation and it can preform calculations. It is embedded within HTML pages. Javascript processes user innput in the web browser. An example of interaction with javascript (about asking for a name) would be:
<script language="javascript">
window.prompt ('enter your name:','); <- thats what the box is going to say and theres going to be a blank text box that the person can fill in
</script>
<form>
<input type="button" value="press"
onclick="window.alert('hello');">
</form>