NPNicholas Preciousinsupercoder11.hashnode.dev·Jul 25, 2023 · 14 min readJavascript ExercisesCallBack Functions: Write a function multiplyByTwo that takes a number as a parameter and returns the result of multiplying it by 2. Use a callback function to print the result. function multiplyByTwo(number, callback) { const result = number *...00
NPNicholas Preciousinsupercoder11.hashnode.dev·Jul 11, 2023 · 3 min readAgile MethodologyState the Agile Manifesto: The Agile Manifesto is a statement of values and principles that guide agile software development. It was created by a group of software developers who gathered at the Snowbird ski resort in Utah, USA, in February 2001. The...00
NPNicholas Preciousinsupercoder11.hashnode.dev·Jun 30, 2023 · 2 min readUser Story On Demo.createensmble.com Platform For Circle Module.Circle has two entities, so I will be writing my user story on these two entities: 1. Circle and 2. Circle Member using CRUD: Create, read, update and delete method. CIRCLE: In the circle, As a User with a paid plan having CIRCLE role I want to cr...00
NPNicholas Preciousinsupercoder11.hashnode.dev·Jun 30, 2023 · 11 min readNotes On Some Terms In JsOBJECTS: An object represents a particular instance of a class, which serves as a blueprint or template defining its structure and functionality. In other words, an object is a tangible or conceptual entity that has certain characteristics (propertie...00
NPNicholas Preciousinsupercoder11.hashnode.dev·Jun 20, 2023 · 5 min readObjects Exercises// N01 var student = { name: "David Rayy", sclass: "VI", rollno: 12 }; // Function to list the properties of an object function listObjectProperties(obj) { for (var prop in obj) { if (obj.hasOwnProperty(prop)) { c...00