Semicolons used to end a statement. You can choose to not write them (because there is ASI: Automatic Semicolon Insertion in Javascript).

Declaring a variable:

var**first** = 'Soumya';

let**first** = 'Soumya';

const**first** = 'Soumya';

(here value is 'Soumya')