Jump to content

[SOLVED] Javascript Maths - Using a full stop


Canman2005

Recommended Posts

Hi all

 

I have the following javascript maths being actioned from the input of a html form

 

if (document.myform.fieldr.value && document.myform.fieldw.value && document.myform.fieldjj.value && document.myform.fieldkk.value)
{
fieldrval = document.myform.fieldr.value
fieldwval = document.myform.fieldw.value
fieldjjval = document.myform.fieldjj.value
fieldkkval = document.myform.fieldkk.value
calc1 = fieldwval - fieldrval
calc2 = calc1 / fieldwval
calc3 = fieldjjval - fieldkkval
calc4 = calc3 / fieldjjval


document.myform.fieldy.value=calc2.calc4
}

 

At the moment this wont work because of the full stop between

 

calc2.calc4

 

on the last line of code

 

How can I output the value with a full stop in between calc2 and calc4?

 

Hope that makes sense

 

Thanks

 

Dave

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.