DEV Community

Dinesh G
Dinesh G

Posted on

My JAVA FULL STACK Development Learning Journey:HTML&CSS step to JavaScript

Hey All!
Welcome to my another blog. Here is a another blog from My full stack development learning journey HTML&CSS step to Javascript.

JavaScript:

JavaScript is a high-level, interpreted programming language that allows you to create dynamic, interactive behavior on websites. It runs in the web browser and works alongside HTML and CSS to build modern web applications.

Java Script is a text based scripting language used in server side and client side to create full featured web page

Data types in javascript:

Number

String

Boolean

Null

undefined

symbol
Enter fullscreen mode Exit fullscreen mode

Big int - It is used for big number in javascript

*Primitive Data types in java: *

Byte - 8 bit

short - 16 bit

int - 4 byte

long - 8 byte

float - 4 byte

Double - 8 byte
Enter fullscreen mode Exit fullscreen mode

Variable:

Tamil = 10 ; -> Referenced variable is used to store the address in memory

Keywords in javascript:

Var - It is a keyword used to declare a variable.

let - It is block scoped

const - It is a keyword used to declare a constant variable

In variable declaration in javascript we need not to mention the datatype before the variable declaration

In variable declaration we don't give a space between variable

variable declaration should be in small letter
Enter fullscreen mode Exit fullscreen mode

In Communication session:

First Day aptitude
Aptitude – Relationships:

  1. Father’s son/daughter → Brother / Sister
  2. Mother’s husband → Father
  3. Son’s wife → Daughter-in-law
  4. Daughter’s husband → Son-in-law
  5. Brother’s son/daughter → Nephew / Niece
  6. Sister’s husband → Brother-in-law
  7. Husband’s/Wife’s sister → Sister-in-law
  8. Father’s / Mother’s father/mother → Grandfather / Grandmother
  9. Father’s brother → Uncle
  10. Mother’s sister → Aunt
  11. Uncle’s / Aunt’s child → Cousin

HAPPY CODING

Top comments (0)