We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
How could I best approach including gender in my mock data? Taking that a step further, how could I include mock data of male names and female names?
I see how I can mock data at a single level (e.g. - firstNames = ['Tom', 'Dick', 'Harry']) but I'd want to have more of an array of objects
firstNames = ['Tom', 'Dick', 'Harry']
people = [{ firstName: Tom, gender: male }, { firstName: Dick, gender: male }, { firstName: Harry, gender: male }, { firstName: Sally, gender: female }, ]
Then I could couple those names and genders together. Thoughts?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
How could I best approach including gender in my mock data? Taking that a step further, how could I include mock data of male names and female names?
I see how I can mock data at a single level (e.g. -
firstNames = ['Tom', 'Dick', 'Harry']
) but I'd want to have more of an array of objectsThen I could couple those names and genders together. Thoughts?
The text was updated successfully, but these errors were encountered: