Basic JavaScript
Comment
// In-line comment
/*
Multi-line
comment
*/
Data types
JavaScript provides eight different data types which are undefined, null, boolean, string, symbol, bigint, number, and object.
Declare Variables
var myName;
We can declare a variable ...
gayeonstegmaier.hashnode.dev11 min read