DEV Community

Discussion on: VueJS Watchers Issue

Collapse
 
thecodingstoic profile image
theCodingStoic

The second issue was a misplaced ).

On line 49 the conditional should have been written:
if(this.answer.indexOf('?') === -1) whereas I had if(this.answer.indexOf('?' === -1)).

Collapse
 
terabytetiger profile image
Tyler V. (he/him)

Wow, it would have taken me forever to find that - good catch!

Thread Thread
 
thecodingstoic profile image
theCodingStoic

Fortunately, you made me conscious of such possibilities :)