List of questions
Related questions
Question 188 - Certified JavaScript Developer I discussion
Given the code below:
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;
Your answer:
0 comments
Sorted by
Leave a comment first