classPerson{constructor(name, age){this.name =name;this.age =age;}get age (){returnthis._age;}
hellow(){
console.log(`Hello,My name is ${this.name}, and I am ${this.age} years old`)}}classStudent extends Person{constructor(name,age,level){
super(name ,age);this.level =level;}}constPerson=newPerson('Ibrahim',26);Student.hellow();// try and catchtry{
alert('try');}catch(error){
alert('catch');}function area(width,height){if(isNaN(width)|| isNaN(height)){throwError('Parameter is a number');}return width *height;}const wait =time =>newPromise((resolve,reject)=>{if(time >5000) reject('Sory I can \ t wait');
setTimeout(resolve ,time)});
wait(2000).then(()=>{console.log("hello");return wait(1000);}).then(()=>{
console.log('world !');});newPromise((resolve,reject)=>{
setTimeout(()=> resolve(1),1000);}).then(result =>{
console.log(result);return result *2;});
السؤال
Abdulmnoum Albraky
خذا خوخ كود جافا سكربت
حتى لو قمت بادخال اوامر بسيطه
2 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.