Skip to content

sreenithams/01-javascript-assignment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

JavaScript Assignment 1

1.Who is the founder of JavaScript and when?

Javascript was invented by Brendan Eich in 1995.

2.what was the first browser, and when was it released?

The first web browser was called WorldWideWeb, developed in 1990 by Tim Berners-Lee

3.Name the two dominant browsers in 2000

  • Internet Explorer
  • Netscape Navigator

4.What is ECMAScript?

ECMAScript is a standard for scripting languages, including JavaScript, JScript, and ActionScript. It is best known a JavaScript standard intended to ensure the interoperability of web pages across different web browsers It is standardized by Ecma International in the document ECMA-262.ECMAScript is commonly used for client-side scripting on the World Wide Web, and it is increasingly being used for server-side applications and services using runtime environments

5.Define syntax.

  • structure of a programming language, including rules for symbols, punctuation, and words.
  • The internal logic that determines how code needs to be written1.
  • The rules that govern the formation of grammatically correct statements or expressions

6.What is TC39?

TC39 is a group of JavaScript developers, implementers, academics, and more, collaborating with the community to maintain and evolve the definition of JavaScript

7.Name different data types in JavaScript

  • String
  • Number
  • Bigint
  • Boolean
  • Undefined
  • Null
  • Symbol
  • Object

8.Explain primitive and non-primitive data types

  • primitive data type Primitive data types are the built-in data types provided by JavaScript. They represent single values and are not mutable. JavaScript supports the following primitive data types
  • non primitive These are derived from primitive data type

9.Differentiate null and undefined

  • undefined When a variable is declared but not initialized, or when a function does not return a value, the variable or the function’s result is undefined. Accessing an object property or array element that does not exist also results in undefined. It is a primitive value.

  • null It is a deliberate assignment that represents the absence of any object value. It is often used to explicitly indicate that a variable or object property should have no value or no reference to any object. It is also a primitive value.

10.https://techno-geeks.co.in/javascript-mcq-on-data-types.html#google_vignette

ss1

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors