Posts by julio cesar • 76 points
3 posts
-
4
votes1
answer230
viewsA: Subscribe problem when return is a single Object
This is normal dude, it happens because the request you are making is asynchronous. If you want to give a console.log() try something like. obterEmpresa() { const empresaId =…
-
0
votes4
answers360
viewsA: How do I remove characters from a string to a certain extent? in PHP
$numeros = "142-22"; $num = substr($numeros,0,strpos($numeros,"-")); echo $num; I used the substr() to bring the characters from the first to the position that the found the "-", the good thing is…
-
2
votes2
answers73
viewsA: jquery selector for a single cell of a "table" made with bootstrap
$(".s3:contains('601457')").html("TESTE");