CoursesAboutContactsPricing
Sign In
Privacy PolicyTerms of useSales and Refunds

© 2025 CodEssay Platform. All rights reserved.

    Part 1: JavaScript Basics

    Level: beginner
    Subject: javascript
    Access: Free

    Learn the basics of JavaScript including variables, data types, operators, type conversion, template literals, and basic input/output.

    Chapters

    Identifying var, let, const

    Learn the differences and use cases of var, let, and const in JavaScript. Understand scope, redeclaration, and reassignment rules.

    Topics: var, let, const

    Primitive Data Types

    Explore JavaScript's primitive data types: string, number, boolean, null, undefined, and symbol. Learn how to identify and use each type.

    Topics: primitive data types

    Arithmetic Operators

    Understand and use arithmetic operators: +, -, *, /, %. Practice with examples to perform calculations.

    Topics: arithmetic operators

    Assignment Operators

    Learn assignment operators: =, +=, -=, *=, /=, %= and how to use them to assign and update variable values.

    Topics: assignment operators

    Type Conversion and Coercion

    Understand implicit vs explicit type conversion and how to convert between strings and numbers using built-in functions.

    Topics: type conversion

    Template Literals

    Use backticks and string interpolation to create dynamic strings easily. Learn to embed expressions inside strings.

    Topics: template literals

    Console Output

    Use console.log() to output information in JavaScript. Practice logging variables, expressions, and messages.

    Topics: console.log

    Browser Input and Output

    Learn to use alert() and prompt() for basic user interaction in the browser. Practice displaying messages and getting user input.

    Topics: alert and prompt