Skip to main content

JavaScript Syntax | Statements and Comments - Variables and Data Types - Operators and Control Flow Statements - Functions in Syntax of JavaScript

JavaScript Syntax:

JavaScript is a versatile scripting language that is primarily used for client-side web development. Here are some key elements of JavaScript syntax:

1. Statements and Comments:

Statements: JavaScript code is composed of statements, which are instructions that perform actions. Statements are typically terminated by a semicolon (`;`).

javascript
  var x = 5;  // Variable declaration and assignment statement
  console.log(x);  // Function call statement


Comments: Comments are used to add explanatory notes to the code. Single-line comments start with `//`, and multi-line comments are enclosed between `/*` and `*/`.

javascript
  // This is a single-line comment
  
  /*
  This is a
  multi-line comment
  */

Statements and Comments - Variables and Data Types - Operators and Control Flow Statements - Functions in Syntax of JavaScript
JavaScript Syntax

2. Variables and Data Types:

Variables:Variables are used to store and represent data. In JavaScript, you can use the `var`, `let`, or `const` keyword to declare variables.

javascript
  var name = "John";  // Variable declaration with initial value
  let age = 25;        // Variable declaration with let
  const pi = 3.14;     // Variable declaration with const


Data Types: JavaScript has dynamic typing, meaning the data type of a variable is determined at runtime. Common data types include numbers, strings, booleans, objects, arrays, and functions.

javascript
  var num = 42;          // Number
  var text = "Hello";    // String
  var flag = true;       // Boolean
  var person = {         // Object
      firstName: "John",
      lastName: "Doe"
  };
  var numbers = [1, 2, 3]; // Array

3. Operators:

JavaScript supports various operators for performing operations on variables and values.

Arithmetic Operators:

javascript
  var sum = 5 + 3;
  var difference = 8 - 3;
  var product = 4 * 2;
  var quotient = 10 / 2;

Comparison Operators:

javascript
  var isEqual = (a === b);
  var isNotEqual = (a !== b);
  var greaterThan = (x > y);
  var lessThanEqual = (x <= y);

Logical Operators:

javascript
  var andCondition = (a && b);
  var orCondition = (x || y);
  var notOperator = !isTrue;

4. Control Flow Statements:

Conditional Statements:

javascript
  if (condition) {
      // Code to execute if the condition is true
  } else {
      // Code to execute if the condition is false
  }

Loops:

javascript
  for (var i = 0; i < 5; i++) {
      // Code to repeat in each iteration
  }

  while (condition) {
      // Code to repeat as long as the condition is true
  }

Switch Statement:

javascript
  switch (expression) {
      case value1:
          // Code to execute if expression equals value1
          break;
      case value2:
          // Code to execute if expression equals value2
          break;
      default:
          // Code to execute if expression doesn't match any case
  }

5. Functions:

Functions are blocks of reusable code that can be defined and called.

javascript
function greet(name) {
    return "Hello, " + name + "!";
}

var greeting = greet("John");
console.log(greeting);

This is a basic overview of JavaScript syntax. JavaScript is a versatile language with many features, and its syntax allows developers to create dynamic and interactive web applications.

Comments

Popular posts from this blog

Biography of Manohar Joshi

Biography of Manohar Joshi: Manohar Gajanan Joshi is an Indian politician who has played a significant role in Maharashtra state politics. Born on December 2, 1937, in a middle-class family in a village called Ganeshpeth in Ratnagiri district, Maharashtra, Joshi's journey into politics was marked by his association with the Shiv Sena, a right-wing regional political party in India. Joshi's political career began in the late 1960s when he joined the Shiv Sena, which was then led by its founder, Bal Thackeray. He quickly rose through the ranks of the party due to his organizational skills, dedication, and ideological alignment with the party's principles, which advocated for the interests of the Marathi-speaking population of Maharashtra. In 1972, Manohar Joshi won his first election to the Brihanmumbai Municipal Corporation (BMC), marking the beginning of his electoral career. He served as a corporator in the BMC and later became the Mayor of Mumbai in 1976. Joshi's tenu...

Merry Christmas Messages and Statuses | History and Celebration Christmas - Happy Christmas Status and Messages for Social Media

Merry Christmas Messages and Statuses: Wishing you a Merry Christmas 2023! Here are some messages and statuses that you can share with your loved ones: "May your Christmas be filled with joy, laughter, and love. Wishing you a wonderful holiday season!". "Sending you warm wishes and good cheer this Christmas. Have a great time with your family and friends!". "May the spirit of Christmas fill your heart with peace and happiness. Merry Christmas!". "Wishing you a magical and blissful holiday season. Have a Merry Christmas and prosperous New Year!". "May this Christmas bring you all the love and luck in the world. Merry Christmas and a Happy New Year!". Wishing you a Merry Christmas 2023 Here are some Christmas messages that you can use to wish your friends and family a Merry Christmas: 1. Wishing you a Christmas filled with joy, love, and laughter. May the spirit of Christmas bring warmth to your heart and happiness to your home. 2. May y...

Biography of Abbie Hoffman | Early Life and Political Activism - Later Years and Personal Life - Legacy of Abbie Hoffman

Biography of Abbie Hoffman: Abbie Hoffman (November 30, 1936 – April 12, 1989) was an American political and social activist known for his involvement in the counterculture and anti-war movements of the 1960s and 1970s. He was a key figure in the Youth International Party (Yippies) and was known for his theatrical and often humorous protests.  Here is a brief biography of Abbie Hoffman: Early Life of Abbie Hoffman: 1. Birth: Abbie Hoffman was born on November 30, 1936, in Worcester, Massachusetts, USA. 2. Education: He attended Brandeis University, where he earned a degree in psychology in 1959. Parada Kahanee Political Activism: 1. Civil Rights Movement: Hoffman began his activism by participating in the civil rights movement during the early 1960s. 2. Youth International Party (Yippies): In 1967, Hoffman, along with Jerry Rubin and others, co-founded the Yippies, a countercultural and anti-authoritarian political party known for its unconventional and theatrical protes...