diff --git a/src/guide/builtin-helpers.md b/src/guide/builtin-helpers.md index 4d2a00a0..345447cf 100644 --- a/src/guide/builtin-helpers.md +++ b/src/guide/builtin-helpers.md @@ -108,6 +108,18 @@ The first and last steps of iteration are noted via the [`@first`](../api-refere Nested `each` blocks may access the iteration variables via depth based paths. To access the parent index, for example, `{{@../index}}` can be used. +When the current item is itself an array, use +[segment-literal notation](expressions.md#literal-segments) to read a fixed index. Plain `this[0]` is not valid +Handlebars syntax; write `this.[0]` instead: + +```handlebars + +``` + ::: ## #with