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 6d7155a2e0 docs(pronoun): correct grammar 2 years ago
..
README.md docs(pronoun): correct grammar 2 years ago

README.md

Pronoun

Instructions

Create a function named pronoun that accepts a string parameter. This function returns an object that will have all the personal pronouns, present in the string, as keys. Each key will have a sub object with the first word after each of the personal pronouns found in the string.

You must also a count property to the sub object, with the amount of occurrences of the pronoun.

Pronouns:

  • i
  • you
  • he
  • she
  • it
  • they
  • we

Example

const ex = 'Using Array Destructuring, you you can iterate through objects easily.'

{ you: { word: [ 'can' ], count: 2 } }

const ex = 'If he you want to buy something you have to pay.'

{
  he: { word: [], count: 1}
  you: { word: [ 'want', 'have' ], count: 2 }
}