feat: add root operation to RPN calculator

This commit is contained in:
2026-05-15 22:58:21 +02:00
parent 4e8155b5f0
commit cb45efff43
2 changed files with 16 additions and 2 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ const functionKeys = [
{ label: '1/x', action: 'recip', className: 'key-default' },
{ label: '%', action: 'mod', className: 'key-default' },
{ label: '√x', action: 'sqrt', className: 'key-default' },
{ label: 'y√x', action: 'pow', className: 'key-default' },
{ label: 'y√x', action: 'root', className: 'key-default' },
{ label: '10ˣ', action: 'pow10', className: 'key-default' },
{ label: '', spacer: true },
{ label: 'log', action: 'log', className: 'key-default' },