All Articles (31)
Update A User Profile In Laravel
If you need to update other fields along with a unique field then you need to tell the unique rule to ignore the user's ID.
Read more…
Passing Arguments in Javascript
You can pass arguments into functions to be used within the function. These arguments can be any JavaScript data type including functions.
Read more…
JavaScript Objects
JavaScript objects are used everywhere. It's an important concept to understand right from the beginning.
Read more…
Basic Module Pattern JavaScript
Wrap your code in an immediately invoked function expression (IFFE). It runs immediately when you create it and has no name.
Read more…
Factory Function To Create An Object In JavaScript
Use a constructor function that returns an object. You can then create multiple people passing in the first and last name arguments the `createPerson` function.
Read more…