Answers for "object notation string javascript\"

0

object notation string javascript\

function getValueFromNotation(obj: Object,is: string|any[], value: any = undefined) {
    
    if (typeof is == 'string')
      return getValueFromNotation(obj,is.split('.'), value);
    else if (is.length==1 && value!==undefined)
      return obj[is[0]] = value;
    else if (is.length==0)
      return obj;
    else
      return getValueFromNotation(obj[is[0]],is.slice(1), value);
  
}
Posted by: Guest on September-03-2020

Code answers related to "object notation string javascript\"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language