Question from the Vue.js test

In VueJS, how to add 2 developers to the list of developers in the following code: `const numberOfDevs = computed(() => { return welovedevs.members.length })`

Easy

Considering the following code:

const numberOfDevs = computed(() => {
  return welovedevs.members.length
})

If I realize that I forgot to count 2 developers in the list and I want to manually add them, can I do numberOfDevs = numberOfDevs + 2?

Author: DamienStatus: PublishedQuestion passed 200 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!