Posts by Ayrton Gomes • 21 points
2 posts
-
-1
votes1
answer46
viewsQ: Problem when using isNaN
Hello, I created a script that consumes a public API to query ceps and returns the result in an HTML. The code: async function buscarCEP() { let numeroCep = document.querySelector('.numeroCEP')…
javascriptasked Ayrton Gomes 21 -
1
votes1
answer96
viewsQ: Subtract values using sqlite in Python
I want to do the following: Create a function with a quantity parameter, thus causing the value of the parameter to subtract with a value from a table field: Example: sell(5), this 5 will subtract…