template litteral

This commit is contained in:
Awen Lelu
2026-01-08 16:30:27 +01:00
parent 1d33c58f02
commit fc1a10eb99

View File

@@ -7,7 +7,7 @@
if (n % 5 === 0) if (n % 5 === 0)
result = result + 'gosling' result = result + 'gosling'
if (result) if (result)
console.log(result) console.log(`n: ${result}`)
if (n <= limit) if (n <= limit)
ryangosling(n + 1, limit) ryangosling(n + 1, limit)
} }