My journey on the Bootcamp Scrimba continues, i began with JavaScript , went through all the data types, I did an exercise which consists of writing an object in JavaScript.
Grocery store Js:
Write a program that has a shopper object. Include at least one property with each of the following data types as values to the properties:
- String
- Number
- Boolean
- Function (called a “method” when it’s inside an object like this. Check out an example for help writing your own)
- In addition, you should add a groceryCart property to your object, which should be an Array of items that can commonly be found in a grocery cart.
var shopper = {
name: "computer",
serie:123,
color:"gray",
isWorking: true,
method: function(){
return this.name +"" +this.color;
},
groceryCart: ["mouse","battery","bagpack","keyboard"]
}
My typing skills reached the beginner level. I noticed that my fingers move faster now.

Of course English is part of my everyday assignment, i continued my lessons on udemy.
This week was productive, i did all the assignments of Powercoders and submitted them back on time.
Jean Cédric NTWARI