Print the Post

Welcome to my blog

Hello Guys,

This is a technical blog that talks about all the coding challenges that i have come across till date.
I hope you would like it.

Here is a sample code snippet:

A sample code snippet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var myData = {
name: "Shiva Chandra Kumar K",
activities: ["Coding", "Basketball"],
email: "ksck23@gmail.com"
};
var findMe = function (data) {
console.log("My Name : ", data.name);
console.log("My Activities : ", data.activities);
console.log("My E-Mail : ", data.email);
};
findMe(myData);

Thanks,
Shiva K

Copyright © 2013 - Shiva Chandra Kumar K - Powered by Hexo
- Ported theme GreyShade -