CMS Development

JWiberg
Miembro

How do i create a counter inside a loop in Hubspot?

resolver

Hey,

 

Im curious how i can create a counter inside a for loop in hubspot? I have a for loop that spit outs different links right now, but i need to be able to keep the count of how many iteration it does. How do i do it in HubL?

For example in javascript you can keep track of it like this:

for (let i = 0; i < 5; i++) {
 console.log(`Iteration number ${i}`);
}

 

In the same way i want to create a function inside my for loop on my hubspot page where i can set i to a number and for each iteration it increases by 1. I hope this makes sense:)

0 Me gusta
1 Soluciones aceptada
NBaring
Solución
Participante

How do i create a counter inside a loop in Hubspot?

resolver
 

 

    {% set items = ['one', 'two', 'three'] %}
       
    {% for item in items %}
       <h1>{{item}}</h1>
        <p>Iteration number {{loop.index}}</p>
    {% endfor %}

 

 
 

Ver la solución en mensaje original publicado

3 Respuestas 3
Ntbrown
Colaborador

How do i create a counter inside a loop in Hubspot?

resolver
loop.index
i = i is defined ? i + 1 : 1
loop.index0
i = i is defined ? i + 1 : 0

Backwards....

loop.revindex
i = i Is defined ? i - 1 : loop.length
loop.revindex0
i = i Is defined ? i - 1 : loop.length - 1
0 Me gusta
JWiberg
Miembro

How do i create a counter inside a loop in Hubspot?

resolver

How would i put it in my code if my for loop looks like this?

{% for item in items %}
Here goes the content for the loop...
{% endfor %}

 

 

0 Me gusta
NBaring
Solución
Participante

How do i create a counter inside a loop in Hubspot?

resolver
 

 

    {% set items = ['one', 'two', 'three'] %}
       
    {% for item in items %}
       <h1>{{item}}</h1>
        <p>Iteration number {{loop.index}}</p>
    {% endfor %}