I simply want to run a method when a variable changes. I think @track monitors the changes, but how do I run this method when it does? How do I write this?
@track displayedData <---when this changes by any means, I want the below thing to run.
handleDisplayedDataChanged() {
console.log('run');
}