+ 1
What is the code for back button in javascript calculator...??
4 odpowiedzi
+ 2
Please share your code via code playground, so we (or just me) will be able to help you
+ 2
Here it is:
function back (){
var txt = document.getElementById("txt").value;
txt = txt.slice(0,-1);
document.getElementById("txt").value = txt;
}
0
Thankx for helping me...
0
You're welcome