01 2023 档案
摘要:Strings and Arrays First… a quick note. Strings are primitives. They just act like objects when they're called upon to do so const s = "I'm not really
阅读全文
摘要:We've explored numbers, strings, booleans, undefined and functions a bit, but we haven't really talked about objects yet. Objects are essentially: an
阅读全文
摘要:Back to Definitions function - a named sequence of statements that performs a specific task or useful operation parameter - a variable that receives a
阅读全文
摘要:Some Definitions We learned how to produce values from using operators on other values. We created expressions!. expression - a fragment of code that
阅读全文
摘要:Hoisting hoisting is the processing of declarations before any code is executed. What's a declaration though? a declaration is a way of telling the in
阅读全文
摘要:All Types All the Time In this set of slides, we'll take a look at: JavaScript's types Numbers and numeric operators Strings and string operators Bool
阅读全文
摘要:Javascript is a dynamically typed, weakly typed and interpreted high-level programming language. Interesting JavaScript Features We'll go over these i
阅读全文