please make it very simple and basic not advanced"
Q1- Write a program in javascript that enters 2 numbers (x and y) then find the value for this formula z = 4x + 3y +5.
Use absolute values of x and y. (convert any negative values of x or y to positive).

Q2- Write the same program above using form:

X =

y =


// convert negative values of x or y to positive
Z = 4X + 3Y + 5


Z =