HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
📌
hkob's Notion
/
ℹ️
逆引きFormula 2.0
/
join()

join()

description
The join function in Formula 2.0 requires a list in the first parameter. join(delimiter, str1, str2) is converted join([str1, str2], delimiter)
broken!
Formula 1.0
join(prop("Name"), "a", "b", "c")
Formula 2.0
join(["a", "b", "c"], prop("Name"))