Graceful Degradation - jellyfish-tom/TIL GitHub Wiki

[SOURCES] https://developer.mozilla.org/en-US/docs/Glossary/Graceful_degradation

Idea is start with most advanced functionality and IF it is not supported degrade to simpler version.

// 1. provide most complex version of feature
while(/* 2. such complexity level is not supported */) { 
    // 3. provide simpler version
}