screen_rotation
Copied to Clipboard
<html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h3>Vue Js Rounding Down Decimal Numbers to nearest integer with Math.floor() </h3> <p>Decimal Number: {{decimalNumber}}</p> <p>Round DOwn Nearest Integer: {{Math.floor(this.decimalNumber)}}</p> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { decimalNumber: 3.90, } }, }); </script> </body> </html>