From 5cf1cb23d974dcced05afaf2e5b84853e89f2a43 Mon Sep 17 00:00:00 2001 From: Maroon Ayoub Date: Sat, 26 Oct 2024 13:06:43 +0300 Subject: [PATCH] Update types-assigning-checking-scoping.md --- .../Tutorials/on-demand/types-assigning-checking-scoping.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Material/Tutorials/on-demand/types-assigning-checking-scoping.md b/Material/Tutorials/on-demand/types-assigning-checking-scoping.md index 9a0f79f..4124ea3 100644 --- a/Material/Tutorials/on-demand/types-assigning-checking-scoping.md +++ b/Material/Tutorials/on-demand/types-assigning-checking-scoping.md @@ -117,8 +117,4 @@ console.log(result); // "105" - **Compiled Languages**: The source code is translated into machine code before execution. This typically results in faster execution but requires a compilation step before running the program - **Interpreted Languages**: The source code is executed line by line, typically by an interpreter. This allows for more dynamic behavior but can be slower than compiled code ---- - -## Bonus: Compiled vs. Interpreted - These concepts are distinct from typing methodologies, focusing instead on execution mechanisms.