programming:javascript

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
programming:javascript [2024/02/06 10:12] – [Interesting JS ES] adminprogramming:javascript [2025/03/31 18:02] (current) – [Programming Javascript JS ES] admin
Line 11: Line 11:
   * https://insights.stackoverflow.com/trends   * https://insights.stackoverflow.com/trends
   * https://insights.stackoverflow.com/survey/2021#   * https://insights.stackoverflow.com/survey/2021#
 +
 +====== Data Visualization ======
 +  * https://habr.com/ru/companies/astralinux/articles/814881/ - holoviews
  
  
 ===== Programming Javascript JS ES===== ===== Programming Javascript JS ES=====
-  * https://jsoneditoronline.org/ json online+  * https://jsoneditoronline.org/ json online 
   * [[https://tobiasahlin.com/blog/move-from-jquery-to-vanilla-javascript/#document-ready|Jquery to vanilla javascript]]   * [[https://tobiasahlin.com/blog/move-from-jquery-to-vanilla-javascript/#document-ready|Jquery to vanilla javascript]]
  
Line 23: Line 26:
        
 <code javascript> <code javascript>
-// - filter function for https://jsoneditoronline.org/  and recursive filter names+// Filter function for https://jsoneditoronline.org/ and recursive filter names
 function query(data) { function query(data) {
   return _.chain(data)   return _.chain(data)
     .mapValues(value => {     .mapValues(value => {
       if (_.isPlainObject(value)) {       if (_.isPlainObject(value)) {
-        return filterKeys(value, 'auth');  +        return filterKeys(value, ['name','mess']);
       }       }
       return value;       return value;
-    }).pickBy( obj =>  +    }) 
-           _.isPlainObject(obj) && Object.keys(obj).length > 0 +    .pickBy(obj => _.isPlainObject(obj) && Object.keys(obj).length > 0) 
-    )+    .map( (item) => item["object Object"])
     .value();     .value();
 } }
  
-function filterKeys(obj, wildcard) {+function filterKeys(obj, wildcards) {
   const result = {};   const result = {};
- 
   const filter = (val, key, parent) => {   const filter = (val, key, parent) => {
-    if(_.isPlainObject(val)) { +    if (_.isPlainObject(val)) { 
-      _.forEach(val, filter);    +      _.forEach(val, filter); 
-    }  +    } 
-    if(_.includes(key, wildcard)) {+    if (_.some(wildcards, wildcard => _.includes(key, wildcard))) {
       _.set(result, `${parent}.${key}`, val);       _.set(result, `${parent}.${key}`, val);
     }     }
   };   };
- 
   filter(obj, 'root', 'root');   filter(obj, 'root', 'root');
-   
   return result;   return result;
 } }
 +
 </code> </code>
 ==== Javascript.Chrome ==== ==== Javascript.Chrome ====
  • programming/javascript.1707214325.txt.gz
  • Last modified: 2024/02/06 10:12
  • by admin