1Welcome to code grepper community.
2https://www.codegrepper.com/app/profile.php?id=57722
3We are happy you are here.
1I am glad to see you on code grepper community.
2https://www.codegrepper.com/app/profile.php?id=50909
3I will be happy to solve your Python problems!
1Welcome to Code Grepper. You can count on me for PHP! https://www.codegrepper.com/app/profile.php?id=237313
1
2//Method invocation
3
4const population = {};
5
6population.add = function (Atlanta, Savannah, Columbus) {
7
8 const city = function () {
9
10 this.sum = Atlanta + Savannah + Columbus;
11 }
12 city()
13}
14
15population.add(1000000, 200000, 45000)
16
17console.log(`The total population of the three cities in Geaorgia is: ${sum}`)