Computer Science, asked by gourimukundhan810, 26 days ago

prefict the output of the following : 2) Math. round (14.7)+Math. floor (9.8)​

Answers

Answered by mritunjayy
0

Explanation:

/ expected output: 5

console.log(Math.floor(5.05));

// expected output: 5

console.log(Math.floor(5));

// expected output: 5

console.log(Math.floor(-5.05));

// expected output: -6

Similar questions