Posts by Lucas GCode • 1 point
2 posts
-
0
votes2
answers1291
viewsA: Show Hide Javascript Button
I believe the problem is in the if conditions that you are doing. Let’s say "a. getSoldes()" is empty, then the variable would look like this: var a = ''; Both comparisons 'a !== null' and 'a !==…
-
0
votes1
answer82
viewsA: Getting the time typed in javascript
Split error() The point here is that split() needs to be used in a string and you’re trying to use it in an object. var hora = new Date(); // Thu Aug 10 2017 21:19:18 GMT-0300 (BRT) typeof data; //…