Cetak ke layar

let x = 10;
print('The value of x is ' + x);
// prints "The value of x is 10"
Thoughtful Tern