I want to do something like this:
{{user.name.toLowerCase()}}
but I get this error:
Error: Parse error on line X: ...tatus {{user.name.toLowerCase()}}"> -----------------------^ Expecting 'ID', got 'undefined'
JavaScript String toLowerCase() The toLowerCase() method converts a string to lowercase letters. The toLowerCase() method does not change the original string.
As simply explained in the doc :
Handlebars.registerHelper('toLowerCase', function(str) { return str.toLowerCase(); });
And just use it like this :
<h1>By {{toLowerCase author}}</h1>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With