Skip to content

Instantly share code, notes, and snippets.

View zonayedpca's full-sized avatar
:octocat:
Coffee, Coke, Code

Zonayed Ahmed zonayedpca

:octocat:
Coffee, Coke, Code
View GitHub Profile
               |    

------------------ | ------------------ \ | () ` | # * | + _ | - {} | . [] | !

# হেডারের জন্যে #

* ইটালিক টেক্সট এর জন্যে *

** স্ট্রং টেক্সট এর জন্যে **

আন-অর্ডারঃ

  • আইটেম এক
  • আইটেম দুই
    • আইটেমে আইটেম এক
    • আইটেমে আইটেম দুই

অর্ডারঃ

  1. আইটেম এক
  2. আইটেম দুই
  • আইটেমে আইটেম এক

কেউ একজন বলেছেঃ

সময় থাকতে সময়ের মূল্য বুঝতে শিখো, নাইলে পরে পস্তাবে

হেডিং এক

হেডিং দুই

হেডিং তিন

হেডিং চার

হেডিং পাচ
হেডিং ছয়
@zonayedpca
zonayedpca / digitalocean-promo-code-february-march-april-2018.md
Created April 1, 2018 11:46
Digital Ocean Promo Code for February / March / April 2018

Digital Ocean Promo Code for Spring 2018 February / March / April 2018

Save $25 for your Cloud Computing Solution with Digital Ocean.

How to get the Discount?

1.) Use this link to Sign Up and save your first $10.

2.) Enter the Promocode LOWENDBOX when you choose your payment method and get another $15 discount.

@zonayedpca
zonayedpca / functionswap.js
Last active March 29, 2018 17:40
Basic Function
function changeValue(a) {
console.log('Value of a inside function before changing: ' + a);
a = 10;
console.log('Value of a inside function after changing: ' + a);
return a;
}
var a = 100;
console.log('Value of a before changing function is applied: ' + a);
changeValue(a);
function printMyName(name, age) {
console.log('My name is: ' + name + ' and I am ' + age + ' years old!');
}
printMyName('Zonayed Ahmed', 21);