Skip to content

Instantly share code, notes, and snippets.

View qalqi's full-sized avatar
🐢
I may be slow to respond.

Qalqi qalqi

🐢
I may be slow to respond.
  • Earth
View GitHub Profile
/*
object : Objects in JavaScript, just as in many other programming languages, can be compared to objects in real life.
The concept of objects in JavaScript can be understood with real life, tangible objects.
In JavaScript, an object is a standalone entity, with properties and type. Compare it with a cup,
Creating a JavaScript Object
Example 1 :
*/
const person = {firstName:"John", lastName:"Doe", age:50 };
@qalqi
qalqi / Hourly Rate Contract Sample
Last active September 7, 2021 17:07 — forked from filippo/Hourly Rate Contract Sample
Hourly Rate contract idea.
# Visual Experience Desgiern Hourly Contract
Date: 7 Sept 2021
Between Lara Gavriely
and Qalqi Innovation Labs Private Limited
## Summary
It’s best to have a few simple things written down so that we’re all on the same page. In this contract you won’t find complicated legal terms or large passages of unreadable text. We have no desire to trick you into signing something that you might later regret. We do want what’s best for the safety of both parties, now and in the future.
@qalqi
qalqi / loadMore.js
Last active August 29, 2015 14:17 — forked from fraserxu/loadMore.js
Load More Toggled to Load Less
// set the default amount of items being displayed
var defaultvalue = 3;
$scope.limit= defaultvalue;
$scope.ismore = false;
// loadMore function
$scope.loadMore = function() {
$scope.limit = $scope.items.length;
$scope.ismore = true;