convert string to int in vf page' code example
Example 1: javvascript convert boolean to string
// To convert a boolean to a string we use the .toString() method
let isValid = true;
console.log(isValid.toString()); // outputs "true"
console.log(isValid); // outputs true
Example 2: how to convert int in python
score = 89
score = str(score)