Assignment Quote by Eric Freeman
““Now when we use the function keyword this way — that is, within a statement, like an assignment statement — we call this a function expression. Notice””
About This Quote
Source Book: Head First Java, 2003
Using the function keyword inside an assignment creates a function expression, a distinct concept in programming.
In simple terms: Placing function in assignment makes a function expression.
Understand function expressions for better code.
Themes
Mood
Type
When to use this quote
- software development
- learning programming
- debugging
Key Concepts
Questions to Reflect On
- How do function expressions differ from declarations?
- When should you use them?
May confuse beginners unfamiliar with terminology.