1322537-2.html (311B)
1 <!DOCTYPE html> 2 <head> 3 <script> 4 function go() { 5 var path = document.getElementById("myPath"); 6 var len = path.getTotalLength(); 7 console.log(len); 8 } 9 </script> 10 </head> 11 <body onload="go()"> 12 <svg> 13 <path id="myPath" d="M45,-17592186044414A71,23 46,0,0 16382,98"/> 14 </svg> 15 </body>