[Vuejs]-Accessing newquestion variable further down in function

0👍

What I needed to have added is newQuestion to the function like so

getAnswer: _.debounce(
      function (newQuestion) {  

so I could use it there after.

Leave a comment