Use the String() method in JavaScript to convert to String.
Example
You can try to run the following code to learn how to convert null to String in JavaScript.
<!DOCTYPE html>
<html>
<body>
<p>Convert null to String</p>
<script>
var myVal = null;
document.write("String: " + String(myVal));
</script>
</body>
</html>