Skip to content

Instantly share code, notes, and snippets.

@dmitryweiner
Created August 31, 2023 13:07
Show Gist options
  • Save dmitryweiner/cbc02f8f6304aa6341b38f4fbf458132 to your computer and use it in GitHub Desktop.
Save dmitryweiner/cbc02f8f6304aa6341b38f4fbf458132 to your computer and use it in GitHub Desktop.
Hebrew in programming
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