Posts by João Paulo • 26 points
2 posts
-
0
votes2
answers170
viewsA: Making Javascript function accounts
Voce wants to multiply the results and display in a string ? I recommend using: const multiplicar = (n1, n2) => n1 * n2 const resultado = multiplicar(7,5) + ', ' + multiplicar(7,10) + ', ' +…
-
1
votes1
answer203
viewsA: evaluating 'this.props = props' React Native
your own error message points to line 8 Voce has: export default class App extends Component(), change to export default class App extends React.Component if it doesn’t work, make sure that prop…