Lambda expression is an expression that allow to apply one or more expression to a data. Lambda expression use fat arrow (=>) token in an expression. Lambda expression will work on posts, comments, or labels.
Lambda expression pattern:
[variable name] => [expression]
Example:
label => label.name == "Technology"
In...
Showing posts with label Blogger. Show all posts
Showing posts with label Blogger. Show all posts
Sunday, 16 December 2018
16
Dec
Arithmetic Operators
Blogger provides arithmetic operator to perform addition (+), subtraction (-), multiplication (*), division (/) and modulo/remainder (%). Additive operator (+) also used for string concatenation.
Operator
Description
+
Adds Left-Operand and Right-Operand, also use...
16
Dec
This section describes the control flow in blogger. Control flow is used to alter the flow of statement execution with decision making and looping that will enabling execute particular blocks of code/show content conditionally.
Decision Making
b:if, b:elseif, & b:else Statement
We can use the b:if, b:elseif and b:else...