اذهب إلى المحتوى

السؤال

نشر

أحاول التأكد من عمل console على javascript، وذلك بالتأكد من وجوده بالطريقة التالية:

   if (typeof console == 'undefined') console = {};
if (typeof console.log == 'undefined') console.log = function() {};
if (typeof console.debug == 'undefined') console.debug = function() {};
if (typeof console.info == 'undefined') console.info = function() {};
if (typeof console.warn == 'undefined') console.warn = function() {};
if (typeof console.error == 'undefined') console.error = function() {};

لكن أرى أن الأمر لا يستحق كل هذا الكود البرمجي، فهل من طريقة أفضل لفعل ذلك؟

Recommended Posts

  • 0
نشر

الطريقة التي كتبت بها الكود صحيحة منطقيا، لكن يمكننا كتابتها بشكل أبسط من ذلك:

if(typeof console === "undefined") {
    console = {
        log: function() { },
        debug: function() { },
        ...
    };
}

يمكنك هذا الكود من استعمال كل وظائف console التي استعملتها سابقًا.

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...