-3

HTML

<div class="item main">
    <h1>Second Heading</h1>
<p>This is my second paragraph<br>
<input type="text" id="input">
  <button id="kg">Convert to Kg</button><br><br>
  <button id="pound">Convert to Pound</button>
  <input type="text" id="output">

    </div>

Javascript

  let kgbtn = document.getElementById('kg');
  let poundbtn = document.getElementById('pound');

 /*This is my converter from KG to Pound*/

 kgbtn.addEventListener('click', function() {
 let input = document.getElementById('input').value;
 document.getElementById('output').value = input / 2.205 + "kg";                    
 })

/*This is my converter from Pound to KG*/
poundbtn.addEventListener('click', function() {
let input = document.getElementById('input').value;
document.getElementById('output').value = input * 2.205 + "Pound";
})

Can anyone please help me out with adding four decimals? I'm quite new to this javascript and would appreciate some help.

Gus05
  • 59
  • 5

2 Answers2

0

You can use toFixed() method.

const num = 123.456789;
console.log(num.toFixed(4));
msrumon
  • 1,250
  • 1
  • 10
  • 27
0

You can use toFixed() method

const num = 12345678;

const res = num.toFixed(4);

console.log(res);
// expected output = 1234,5678

function financial(x) {
  return Number.parseFloat(x).toFixed(2);
}

console.log(financial(123.456));
// expected output: "123.46"

console.log(financial(0.004));
// expected output: "0.00"

console.log(financial('1.23e+5'));
// expected output: "123000.00"

Here are examples similar to what you want

Number.prototype.toFixed()

pilchard
  • 12,414
  • 5
  • 11
  • 23
karim_mo
  • 137
  • 8