Dec 22, 2017
Write JavaScript code that accepts an array of integer and output the sum of two largest integers from the array. But the sum of those two largest integers should be even number.
Example:
#1
var int_array = [1, 2, 3, 4, 5, 6, 7, 8, 9];
// should output 7+9 = 16
#2
var int_array = [9, 5, 3, 2, 8, 14, 5, 7, 3, 11, 12]
// should output 12+14 = 26
Following...
What is the difference between state and props in ReactJs
Kalpesh Satasiya
10:54 PM
Props, React, ReactJs, State
No comments
There are many times we play with state and props in javascript how it's different in react.
Those who don't know about the difference of state and props So I thought it will be a good idea to write a blog post about it.
You may ask, if data is only flown downwards from components to components, how could we access data we need from the previous...
Dec 11, 2017
Create your first Vue.js application using Visual Studio Code (VS Code)
Kalpesh Satasiya
12:28 AM
JavaScript, Visual Studio Code, VS Code, Vue.js
No comments
Going to create Vue.js application using Visual Studio Code before going to create the application, I assume that you already familiar with Visual Studio Code editor.
If you are not aware of it so let me take opportunity to help on this....
Nov 20, 2017
JSON support to ignore property at run time of null value
Kalpesh Satasiya
5:49 PM
JSON, JSON Ignore, Newtonsoft, NuGet
No comments
Nowadays, NuGet packages make developer life easy. Today going to talk more about Newtonsoft.Json NuGet package one of the feature.
Many times developer, don't want all fields to be serialize and part of that string which fields value as Null.
Because of nowadays developer playing JSON string to object and object to JSON string and its...
Nov 18, 2017
SSRS display date format with st nd rd th
Kalpesh Satasiya
12:01 PM
Date Format, Reporting, SSRS
No comments
How to do we achieve date format in SSRS.
- Using inbuilt format method to achieve date format in SSRS.
=format(cdate(Parameter!ReportingDate.Value),"dd.MM.yyyy")
Using above format method to achieving 21.10.2016 date.
If you want to date format like 21st October 2016 then there is no inbuilt method support to SSRS.
So for the need to write a...
Jul 23, 2017
Jul 22, 2017
Jun 25, 2017
May 14, 2017
Pass By Value and Pass By Reference in C#
Kalpesh Satasiya
2:58 PM
asp.net, C#, Pass By Reference, Pass By Value
No comments

This blog post for the beginner, those who have started his career in .Net technologies.
It's a common question in the interview interviewer and many have a misconception and given the wrong answer during the interview.
In .NET Framework,...
Apr 29, 2017
Mar 26, 2017
Mar 11, 2017
Jan 28, 2017
Jan 22, 2017
Jan 8, 2017
Create Angular2 Application using Angular CLI and Asp.Net Core
Kalpesh Satasiya
10:56 PM
Angular CLI, Angular2, ASP.NET Core 1.0, npm
No comments
Going to talk more about the latest and the hot topic of the current trend in the market. It's an Angular2 and Asp.Net Core.
The Angular2 CLI makes it easy to create an Angular2 application else it's very complex configuration for developers.
Good...
Jan 7, 2017
xUnit integration testing with an In Memory Database in Asp.Net Core App
Kalpesh Satasiya
7:51 PM
ASP.NET Core 1.0, In Memory, Unit Test cases, xUnit
No comments

Today, We are going to cover xUnit integration testing with an In Memory database in Asp.Net Core.
I assumed you already work with Asp.Net core application so we are not going to discuss about asp.net core and xUnit.
You can find the source...