Why Discuss JavaScript? CS312: Programming Languages. Lecture 21: JavaScript. JavaScript Target. What s a Scripting Language?

Similar documents
CS312: Programming Languages. Lecture 21: JavaScript

Spring JavaScript. John Mitchell Adapted by Mooly Sagiv. Reading: links on last slide Homework 1: 18/3 17/4

FALL 2017 CS 498RK JAVASCRIPT. Fashionable and Functional!

INF5750. Introduction to JavaScript and Node.js

JavaScript. History. Adding JavaScript to a page. CS144: Web Applications

CGS 3066: Spring 2015 JavaScript Reference

Lecture 8 (7.5?): Javascript

COMP284 Scripting Languages Lecture 14: JavaScript (Part 1) Handouts

JavaScript for PHP Developers

JavaScript. History. Adding JavaScript to a page. CS144: Web Applications

JavaScript CS 4640 Programming Languages for Web Applications

Boot Camp JavaScript Sioux, March 31, 2011

JavaScript CS 4640 Programming Languages for Web Applications

JavaScript: the Big Picture

JavaScript. The Bad Parts. Patrick Behr

Client-Side Web Technologies. JavaScript Part I

JavaScript. Training Offer for JavaScript Introduction JavaScript. JavaScript Objects

JavaScript: Introduction, Types


Web Application Development

Frontend II: Javascript and DOM Programming. Wednesday, January 7, 15

JavaScript Lecture 1

JavaScript: The Good Parts. Douglas Crockford Yahoo! Inc.

JavaScript Programming

JavaScript: The Good Parts

Functional JavaScript. Douglas Crockford Yahoo! Inc.

Introduction to JavaScript p. 1 JavaScript Myths p. 2 Versions of JavaScript p. 2 Client-Side JavaScript p. 3 JavaScript in Other Contexts p.

JavaScript: More Syntax

CSC Web Programming. Introduction to JavaScript

CEU s (Continuing Education Units) 12 Hours (i.e. Mon Thurs 5 9PM or Sat Sun 8AM 5PM)

JavaScript: Sort of a Big Deal,

JavaScript: The Basics

Compilers. Prerequisites

Working with JavaScript

Client vs Server Scripting

UNIT -II. Language-History and Versions Introduction JavaScript in Perspective-

JavaScript I Language Basics

JAVASCRIPT AND JQUERY: AN INTRODUCTION (WEB PROGRAMMING, X452.1)

CS 360 Programming Languages Interpreters

Javascript. Many examples from Kyle Simpson: Scope and Closures

CSE 341: Programming Languages

CS 5142 Scripting Languages

2D Game design Intro to Html 5

Such JavaScript Very Wow

A Structural Operational Semantics for JavaScript

Smalltalk: developed at Xerox Palo Alto Research Center by the Learning Research Group in the 1970 s (Smalltalk-72, Smalltalk-76, Smalltalk-80)

Advanced Topics in Programming Languages Spring Semester, Lecture 2: March 13, JavaScript

CS 112 Introduction to Computing II. Wayne Snyder Computer Science Department Boston University

Notes on JavaScript (aka ECMAScript) and the DOM

Ruby: Introduction, Basics

The course is supplemented by numerous hands-on labs that help attendees reinforce their theoretical knowledge of the learned material.

CISC 1600 Lecture 2.4 Introduction to JavaScript

Ruby: Introduction, Basics

JavaScript. What s wrong with JavaScript?

Programming language components

JavaScript Introduction

Programming. Syntax and Semantics

CS1622. Semantic Analysis. The Compiler So Far. Lecture 15 Semantic Analysis. How to build symbol tables How to use them to find

Key components of a lang. Deconstructing OCaml. In OCaml. Units of computation. In Java/Python. In OCaml. Units of computation.

Background. Javascript is not related to Java in anyway other than trying to get some free publicity

The JavaScript Language

8/27/17. CS-3304 Introduction. What will you learn? Semester Outline. Websites INTRODUCTION TO PROGRAMMING LANGUAGES

Lecture 8: JavaScript

Documents and computation. Introduction to JavaScript. JavaScript vs. Java Applet. Myths. JavaScript. Standard

Intro. Scheme Basics. scm> 5 5. scm>

Assigns a number to 110,000 letters/glyphs U+0041 is an A U+0062 is an a. U+00A9 is a copyright symbol U+0F03 is an

JavaScript: Coercion, Functions, Arrays

Software. Programming Languages. Types of Software. Types of Languages. Types of Programming. Software does something

Module 5: Javascript, Cookies COM 420

CSE 413 Spring Introduction to Ruby. Credit: Dan Grossman, CSE341

Ruby: Introduction, Basics

GRITS AJAX & GWT. Trey Roby. GRITS 5/14/09 Roby - 1

JavaScript Doesn't Have to Hurt: Techniques, Tools and Frameworks to Ease JavaScript Development

Chapter 1. Fundamentals of Higher Order Programming

Current trends: Scripting (I) A bid part of interface design centers around dialogs

More Lambda Calculus and Intro to Type Systems

Welcome to CS50 section! This is Week 10 :(

CS50 Quiz Review. November 13, 2017

Flow Control. CSC215 Lecture

JavaScript: Getting Started

Chapter 3 Data Types and Variables

Lecture 3: The Basics of JavaScript. Background. Needs for Programming Capability. Origin of JavaScript. Using Client-side JavaScript

Application Development in JAVA. Data Types, Variable, Comments & Operators. Part I: Core Java (J2SE) Getting Started

Programming Language Basics

5. Strict mode use strict ; 6. Statement without semicolon, with semicolon 7. Keywords 8. Variables var keyword and global scope variable 9.

Pace University. Fundamental Concepts of CS121 1

This tutorial will help you understand JSON and its use within various programming languages such as PHP, PERL, Python, Ruby, Java, etc.

Lecture 16: Static Semantics Overview 1

JSJS - Project Proposal

Operational Semantics. One-Slide Summary. Lecture Outline

JavaScript: the language of browser interactions. Claudia Hauff TI1506: Web and Database Technology

Concepts of Programming Languages

Basics of JavaScript. Last Week. Needs for Programming Capability. Browser as Development Platform. Using Client-side JavaScript. Origin of JavaScript

Kyle Rainville Littleton Coin Company

So, if you receive data from a server, in JSON format, you can use it like any other JavaScript object.

Copyright Descriptor Systems, Course materials may not be reproduced in whole or in part without prior written consent of Joel Barnum

,

ECMAScript 2015 The Future of JavaScript is Now!

16. Objects & JSON. Dr. Dave Parker. Informa;on and the Web, 2014/15

Semantic Analysis. Outline. The role of semantic analysis in a compiler. Scope. Types. Where we are. The Compiler Front-End

Transcription:

Why Discuss JavaScript? CS312: Programming Languages Lecture 21: JavaScript Thomas Dillig JavaScript is very widely used and growing Any AJAX application heavily relies on JavaScript JavaScript also has interesting language trade-offs You can think of JavaScipt as a hybrid language with features from almost everywhere glued together Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 1/25 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 2/25 JavaScript Target Every language has a design target: C: Systems programming What s a Scripting Language? Answer: One language embedded in another More specifically, a scripting language is used to write programs that produce inputs to another language processor Java: Set-top box JavaScript: Web scripting Examples: Embedded JavaScript produces HTML to be displayed by the browser Every language modifies some abstract data structure Shell Scripts compute commands executed by the shell In JavaScipt, this is the document object model of an html web page Common characteristics of scripting languages: Lots of string support Simple structure with little/no declarations Flexibility preferred over efficiency, safety, common sense Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 3/25 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 4/25 JavaScript History Developed by Brendan Eich at Netscape in 1995 as scripting language for Navigator 2 Later standardized for browser compatibility, called ECMAScript Renamed to JavaScript in part of marketing deal with Sun - no relation to Java! Today: Many implementations available Motivation for JavaScript Netscape, 1995 Has >90% browser market share Opportunity to define the HTML scripting language Brendan Eich: I hacked the JS prototype in 1 week in May, and it showed! Mistakes were frozen early. Rest of the yer spend embedding in browser and cursing my design Initial uses of JavaScript: Form validation, page effects, dynamic content manipulation More recently: Web 2.0: Significant functionality implemented on web client Examples: Google Docs, Gmail, etc Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 5/25 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 6/25 1

JavaScript Design Goals JavaScript Design Make it easy to copy/paste code Tolerate minor errors (missing semicolon) Simplified even handling, e.g., onclick, onmousedown,... inspired by HyperCard Full features that make it easy to write and modify code that does something from all other languages Functions based on LISP/Scheme We have higher order functions, lambda, etc Objects in JavaScript are based on Smalltalk/Self var pt = {x: 10, move:function(dx){this.x+=dx}} But lots of issues Douglas Crockford: In JavaScript, there is a beautiful, elegant, highly expressive language that is buried under a steaming pile of good intentions and blunders Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 7/25 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 8/25 Language Syntax Variables JavaScript is case sensitive But HTML is not case sensitive, so any HTML object in JavaScript is also not Example: onclick vs. ONCLICK Statements are terminated by returns or semi-colons JavaScript has blocks using { }, but no separate scope! You define variables using the var statement But no declarations; variables are implicitly defined by their first use, which must be an assignment. Note: Implicit definition has global scope, even if it occurs in nested scope { var x = "123" } return x; //will return "123" Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 9/25 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 10/25 Stand-alone JavaScript JavaScript in the Browser You can use the Rhino commend-line interpreter to play with JavaScript without a website rhino has the same read-eval-print loop we have already seen in the LISP interpreter Play with it! Most of the time JavaScript is used in the browser to manipulate a web page Main reason it is used: Only kind of program that anyone can run in any browser and expect to function This is the main reason JavaScript is popular Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 11/25 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 12/25 2

Web Example: Page Manipulation Primitive Data Types Boolean: true and false Numbers: 64-bit floating point No integer type! Special value NaN and Infinity Strings using Unicode characters Special values null, undefined Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 13/25 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 14/25 JavaScript Functions Function Examples Declarations can appear in function body, allowing for local variables and inner functions Parameter passing: Basic types by value Objects by reference You can supply any number of arguments fun.length: number of arguments in definition fun.arguments.length: number of arguments in call Anonymous (lambda) functions: (function (x,y) {return x+y}) (2,3); Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 15/25 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 16/25 Use of Anonymous Functions Objects In JavaScript, an object is nothing but a collection of named properties Can think of it almost like a hash table or associative array Defined by a set of name:value pairs: objduck = { name:"quak", gender:"male" } New properties can be added at any time: objduck.species = "mallard" Can have methods, can refer to this Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 17/25 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 18/25 3

Basic Object Features Objects and this The this variable is a property of the activation object for a function call In most cases, this points to the object which has the function as property (or method) Example: var o = {x:10, f:function): o.f() {return this.x}} This will evaluate to 10 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 19/25 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 20/25 JavaScript Functions and this Local Variables stored in Scope Object Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 21/25 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 22/25 Concurrency Unusual features of JavaScript JavaScript is single-threaded However, AJAX model allows for some hacked-up asynchronous callback mechanism using XMLHttpRequest Widely used, but sad and pathetic hack Another form of concurrency: Use SetTimeout for cooperative multitasking Built-in regular expressions Add, delete methods of objects dynamically Redefine native functions and objects Iterate over methods of an object: for (variable in object) { statement } Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 23/25 Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 24/25 4

JavaScript Overall JavaScript is in many ways the worst of all features combined in one language The language does everything possible to allow unreadable and buggy code Dynamic features make an performant interpreter extremely difficult And yet: JavaScript is one of the most widely-used languages! Thomas Dillig, CS312: Programming Languages Lecture 21: JavaScript 25/25 5