Which three code segments result in a correct conversion from number to string? Choose 3 answers
A. let strValue = numValue. toString();
B. let strValue = * * 4 numValue;
C. let strValue = numValue.toText ();
D. let scrValue =String(numValue);
E. let strValue = (String)numValue;
Answer: A,B,D
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit