Write a program to find quotient and remainder in javascript code example
Example 1: quotient js
var floatingPointPart = (18/7) % 1;
var integerPart = Math.floor(18/7);
Example 2: getting the qoutient of a number in javascript
var div = Math.trunc(y/x);
var rem = y % x;