You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
davhojt 9f4f34f281 docs(get): correct grammar 2 years ago
..
README.md docs(get): correct grammar 2 years ago

README.md

Get

Instructions

Create a function named get which takes two arguments:

  • src: an object.
  • path: a string representing a path.

Your function will return the value at the given path in the src object.

Example:

const src = { nested: { key: 'peekaboo' } }
const path = 'nested.key'
get(src, path) // -> 'peekaboo'