Skip to content

Instantly share code, notes, and snippets.

@amrelarabi
Created December 12, 2021 07:51
Show Gist options
  • Save amrelarabi/f9cbfe62c3bbfb16f03f37badcbd0f7e to your computer and use it in GitHub Desktop.
Save amrelarabi/f9cbfe62c3bbfb16f03f37badcbd0f7e to your computer and use it in GitHub Desktop.
class Person {
constructor () {
this.name = 'Jeo';
}
}
const person = new Person();
console.log(person.name); //طباعة الاسم
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment