Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
intro-to-javascript-wokshop [2024/07/05 01:53] – renick | intro-to-javascript-wokshop [2024/07/05 04:27] (current) – renick | ||
---|---|---|---|
Line 52: | Line 52: | ||
https:// | https:// | ||
- | ===== notes ===== | + | ===== term dump ===== |
- | + | < | |
+ | ( ) parentheses, | ||
+ | { } curly brackets, curly braces | ||
+ | ' ' | ||
+ | " " double quotes | ||
+ | , comma | ||
+ | . period, dot | ||
+ | - dash, hyphen | ||
+ | _ underscore | ||
+ | / slash | ||
+ | \ backslash | ||
+ | argument = the input to a function | ||
+ | call a function = use a function, make it do what it's intended to do | ||
+ | put the argument between the parentheses when you call a function | ||
+ | declare a function | ||
+ | return = the value that a function returns or gives back when it is called | ||
+ | string = text data which is determined by a pair of quotes, single or double | ||
+ | variable = a box with a name in which we can store things | ||
+ | </ |