let number2 = document.querySelector('.numder2').value;
const obj = {
value: 1
}
obj.value = 2
obj['value'] = 3
<div class="card">
<h4>Пицца «Пепперони»</h4>
<img src="images/pizza.png">
<p>Пепперони, перец халапеньо, сыр моцарелла, пицца-соус, травы прованса</p>
<input type="radio" class="radio" value="470" id="option1" name="radio" onchange="func()"/>
<label for="option1">32 см</label>
<input type="radio" class="radio" value="390" id="option2" name="radio" onchange="func()"/>
<label for="option2">24 см</label>
<p id="result"></p>
</div>
const result = document.getElementById('result')
const radio = document.querySelector('input[name = "radio"]')
function func() {
const checked = document.querySelector('input[name = "radio"]:checked');
result.innerText = checked.value
}