Notion Formula Notes
by aislinevans · 9 things on NewTwos
- map()
- creates a NEW LIST by calling a function on every item in the original list
- find()
- returns the FIRST ITEM in a list that matches a condition
- let()
- The let() function will allow you to assign a value to a variable, and then use that variable in the expression.
- let(variable, value, expression)
- variable.let(value, expression)
- Note that the resulting variable can only be used between the brackets of the original let() function.