Begin Description
with some content
// (c) 1975
// Recursive Thought Engine
// Version 1.0
const replication = (quantity) => {
const childProcessArray = []
while (quantity > childProcessArray.length) {
childProcessArray.push(new ChildProcess())
}
return childProcessArray
}
// init family-life
const childBots = replication(3)
// init career
let carreerOne = softwareDevelopment({
years: 23,
technologies: [
'JS', 'NodeJS', 'React', 'Vue', 'MongoDB', 'DevOps', ...
],
industries: [
'Telecom', 'eCommerce', 'consulting', 'healthcare', 'finance', 'retail'
],
roles: [
'Sr. Developer', 'Software Architect', 'Manager', 'CTO', 'Consultant'
]
})
let carreerTwo = corporateLeadership({
years: 3,
technologies: [
'information technology'
],
industries: [
'retail'
],
roles: [ 'Director' ],
companyCategory: 'Fortune 1000'
})