Created
August 31, 2023 13:07
-
-
Save dmitryweiner/cbc02f8f6304aa6341b38f4fbf458132 to your computer and use it in GitHub Desktop.
Hebrew in programming
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const obj = { // אוביקט | |
a: 1, // שדה | |
}; | |
function sum(arr /* פרמטר */) { // פונקציה | |
let acc// משתנה | |
= 0; // ערך המשתנה | |
for(let i = 0; i < arr.length; i++) { // לולאה | |
acc += arr[i]; | |
} | |
return acc; // מחזירימ את הערך | |
} | |
const arr // קבוע | |
= [1, 2, 3]; // מערך | |
sum(arr); // קריאה של פונקציה | |
/* | |
Dictionary: | |
אוביקט object | |
שדה field | |
פונקציה function | |
פרמטר parameter | |
משתנה variable | |
ערך המשתנה variable value | |
לולאה cycle | |
מחזירימ את הערך returning value | |
קבוע constant | |
מערך array | |
קריאה של פונקציה function call | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment