I have two arrays in my component
arr1 = ["one", "two"]
arr2 = ["one", "two"]
In my html I am using my ngIf like this
*ngIf="!isEnabled && arr1 != arr2"
The isEnabled works fine but when comparing the two arrays it always shows that they are not equal even though they are set to be equal at the start.
The arr1 will change based on a service but I confirmed the service is changing the array already