Computer Science, asked by kartikkashyap40, 28 days ago

Evaluate the following:
1. "10" + "90"
2. Answer=(10<8)? 10:8
3. j=(i++) + (--i) + (++i) when i=3. also evaluate the final value i.
in javascript ​

Answers

Answered by tejaswaroopbattula
4

Answer:

1. 1090

2. Answer = 8

3. j = 10

value of i = 4 after evaluating

Similar questions