conversión de tipo implícito JS

Input:
  var v = 1555;
  var s = v.toString();

Output:
	now s contains "1555".
Lokesh003Coding