This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// C# | |
==================== First/FirstOrDefault DEMO - Get First Order ==================== | |
==================== First order after March ==================== | |
Order ID: 3, Quantity: 30, Order Date: 03 Mar 2018 03:03 AM pst | |
==================== First or Default order after September ==================== | |
<NULL> | |
// JS | |
==================== Filter (LINQ 'First/FirstOrDefault' Equivalent) DEMO - Get First Order ==================== | |
==================== First order after March ==================== | |
Order ID: 3, Quantity: 30, Order Date: Tue Apr 03 2018 03:03:03 GMT-0400 (Eastern Daylight Time) | |
==================== First or Default order after September ==================== | |
<NULL> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment