Question: 1) Which one of the scientific literal?
A
B
C
D
a) 9.0021006295925e+21
B
b) 0xa8
C
c) 0xe3
D
d) “54321”
Note: Not available
var a=5 var b=6 var c=(a<b) var d=("Your stock is worth"+(c*25)+"thousand dollar"); document.write(d);
var elStringo="15.95"; var laStringa="32 on sale" var newval=parseFloat(elStringo); var hotval=parseInt(laStringa); document.write("Your total is:$"+( newval+ hotval));