Notes v3

Search

Search IconIcon to open search

Intro

Last updated Sep 12, 2023 Edit Source

# Variables

- Are temporary member address locations

Global - A variable that can be accessed anywhere in the code Local - A variable that is only available in a single function or part

1
2
const pi = 3.1412 // constant
let temp = 25 // local var

# Data Types

String - Text Integer - Whole number Float - Decimal number Boolean - True/False