const sum =(num1: number, num2: number)=>{
console.log(num1 + num2);return num1 + num2;};// sum(5, 5);// Adding Try Cath Logic// sum(5, 'A'); // Log 5A Err under "A" becuse you put string
console.log('====================================');try{
sum(5,1);
sum(8,'A');}catch(e){
console.log('the type you entered is NaN');}
console.log('====================================');
السؤال
أحمد عبد الله2
مرحبا .. هدا هو الكود
وعند عمل ران فانه يطبع
====================================
LOG 6
LOG 8A
===================================
انا اريده ان يظهر لى الاكسبشن
'the type you entered is NaN'
ما الحل ؟
ملحوظة انا مستخدم تايب سكريبت
10 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.