programming:javascript

This is an old revision of the document!


Interesting JS ES

Javascript Tranding popularity trand insight

  JMESPath - features[?geometry.type == `LineString`]
 
// - filter function for https://jsoneditoronline.org/  and recursive filter names
function query(data) {
  return _.chain(data)
    .mapValues(value => {
      if (_.isPlainObject(value)) {
        return filterKeys(value, 'auth');  
      }
      return value;
    }).pickBy( obj => 
           _.isPlainObject(obj) && Object.keys(obj).length > 0
    )
    .value();
}
 
function filterKeys(obj, wildcard) {
  const result = {};
 
  const filter = (val, key, parent) => {
    if(_.isPlainObject(val)) {
      _.forEach(val, filter);   
    } 
    if(_.includes(key, wildcard)) {
      _.set(result, `${parent}.${key}`, val);
    }
  };
 
  filter(obj, 'root', 'root');
 
  return result;
}
  1. `document.designMode` that feeling when you first discovered `document.designMode` https://t.co/bxA1otzCjN

Chrome console load library

Chrome console save method

Process obect

Manipulating data

Example Fetch

Nodejs.log

Node.js speed

  • programming/javascript.1705841236.txt.gz
  • Last modified: 2024/01/21 12:47
  • by admin