While I was working with a dx-calendar
component from DevExtreme, I face an issue.
I just wanted to pass 1 to firstDayOfWeek
of that component in order to set Monday as the first day of the week.
So I tried:
<dx-calendar firstDayOfWeek="1" />
But it didn't work and the solution was:
<dx-calendar [firstDayOfWeek]="1" />
I thought they both are passing 1 to the component, but the behavior was different.
Related Question here