Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<script type="text/javascript">
var str="Visit Microsoft!";
document.write(str.replace(/Microsoft/, "W3Schools"));
</script>
> а какой запрос должен быть? а то мне чушь показывает:
javascript поиск и замена в тексте
<script>
# echo chr(65);
document.write(String.fromCharCode(65));
document.write("<br />");
# echo ord('A');
document.write("A".charCodeAt(0));
</script>
function ord(chr)
{
return chr.charCodeAt(0);
}
document.write(ord('A'));