In our organisation we still use a lot of the older syntax. I’ve been trying to create a mapping
of the old to the new syntax, so I can better advise my colleagues.
This is what I have so far:
old
new
item
$input.item
items
$input.all()
$items()
$input.all()
$items(‘Node name’)
$(‘Node name’).all()
$item(0).$node[‘Node name’]
$(‘Node name’).first()
$node[‘Node name’]
n/a
I have 2 questions: is this correct, and is there anything important missing?