skip to Main Content

Html – How sum values of a table with decimals

I have a project in HTML and JS whit a table and input <input type="text" id="suma"> <table id="myTable"> <tbody> <tr> <td>N</td> <td>NOMBRE</td> <td>MONTO</td> </tr> <tr> <td>1</td> <td>Alba</td> <td>1.200,00</td> </tr> <tr> <td>2</td> <td>Andrea</td> <td>1.200,00</td> </tr> <tr> <td>3</td> <td>Jose</td> <td>1.200,00</td> </tr> </tbody>…

VIEW QUESTION

Google script json parse issue

I used this code to parse my webrequest response: for (var [key,val] of Object.entries(jsonObj)) { console.log("Key="+key); console.log("Value="+val); } Its working for one of my url but for another one I get: {members=[Ljava.lang.Object;@3e0dc74, list_id=xxxxx, total_items=2.0, _links=[Ljava.lang.Object;@610c2a56} The response is ok but…

VIEW QUESTION
Back To Top
Search