How can I adjust the value of a canvas arc? The input accepts larger values, but not smaller ones.
var btn = document.querySelector(".btn");
btn.addEventListener("click", () => {
var inputVal = document.querySelector(".inp").value;
var canv = document.querySelector(".canvas");
var context = canv.getContext("2d");
context.beginPath();
context.arc(100, 75, 50, 0, `${inputVal}`);
context.stroke();
})