This commit is contained in:
Philippe Torrel
2026-06-17 11:00:40 +02:00
parent f39de9f3b4
commit 1903c9fcf7
4 changed files with 67 additions and 7 deletions

View File

@@ -30,7 +30,8 @@
let lengthName = firstName.length * lastName.length;
outputEl.textContent = lengthName;
console.log(lengthName);
console.log(lengthName); // => 56
console.log('Philippe'.length * 'Torrel'.length); // => 48
</script>
</body>
</html>