<header>
<h2 class="title">String.prototype.toString()</h2>
<p class="description">Демонстрація перетворення рядкового об'єкта та примітивного рядка за допомогою toString().</p>
</header>
<main>
<div class="result">
<button id="convertObjectButton">Перетворити рядковий об'єкт</button>
<button id="convertPrimitiveButton">Перетворити примітивний рядок</button>
<p id="objectInfo"></p>
<p id="primitiveInfo"></p>
</div>
</main>
body {
font-size: 16px;
line-height: 1.5;
font-family: monospace;
}
header {
background-color: #f1f1f1;
margin-bottom: 25px;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
header h2.title {
padding-bottom: 15px;
border-bottom: 1px solid #999;
}
header p.description {
font-style: italic;
color: #222;
}
.result {
background-color: #f8f8f8;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
.result {
background-color: #f8f8f8;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 15px;
margin: 10px 0;
border: none;
cursor: pointer;
border-radius: 4px;
}
button:hover {
background-color: #45a049;
}
document.getElementById("convertObjectButton").addEventListener("click", function() {
let stringObject = new String("Це рядковий об'єкт");
let convertedString = stringObject.toString();
document.getElementById("objectInfo").innerHTML = `Оригінальний тип: ${typeof stringObject}, Перетворений тип: ${typeof convertedString}`;
});
document.getElementById("convertPrimitiveButton").addEventListener("click", function() {
let primitiveString = "Це примітивний рядок";
let convertedString = primitiveString.toString();
document.getElementById("primitiveInfo").innerHTML = `Оригінальний тип: ${typeof primitiveString}, Перетворений тип: ${typeof convertedString}`;
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.