{{#each user.Addtasks}}
{{#if {{this._id}} == {{ID}} }}
Statement;
Statement;
{{/if}}
{{/each}}
Here _id
and ID
both are getting passed from route to the handlebar page and now I want to compare them. How do I compare the two using ==
?
{{#each user.Addtasks}}
{{#if {{this._id}} == {{ID}} }}
Statement;
Statement;
{{/if}}
{{/each}}
Here _id
and ID
both are getting passed from route to the handlebar page and now I want to compare them. How do I compare the two using ==
?