Search
 
SCRIPT & CODE EXAMPLE
 

TYPESCRIPT

lua operators

== -- Equal to whatever
<= -- Less than or equal to
>= -- Greater than or equal to
< -- Less than
> -- Greater Than
~= -- Doesnt equal
# -- Length of something
Comment

lua logical and

if 1 == 1 and 2 == 2 then
  print("cool!")
end
Comment

lua operators

== equal to
~= not equal to
< less than
> greater than
<= less than or equal to
>= greater than or equal to

+	Addition
-	Subtraction
*	Multiplication
/	Division
^	Exponentiation
%	Modulus
-	Unary negation
Comment

lua inline logical operators

print("blah: " .. (a and "blah" or "nahblah"))
Comment

PREVIOUS NEXT
Code Example
Typescript :: average of two lists python 
Typescript :: typescript-eslint disable 
Typescript :: eslint airbnb react typescript 
Typescript :: angular http 
Typescript :: functional testing types? 
Typescript :: typescript extend interface 
Typescript :: initialize empty array typescript 
Typescript :: Pip install requirements txt not found 
Typescript :: sort an arraylist of objects in java 
Typescript :: classes in typescript 
Typescript :: material ui styled components with theme 
Typescript :: mocha test typescript 
Typescript :: calculate distance between two latitude longitude points in google maps api 
Typescript :: How to define functional component types 
Typescript :: distance using the constant velocity formula 
Typescript :: google fonts icons size classes 
Typescript :: typescript function as parameter 
Typescript :: query orders by products woocommerce 
Typescript :: Parsing error: "parserOptions.project" has been set for @typescript-eslint/parser. 
Typescript :: An attempt was made to access a socket in a way forbidden by its access permissions. 
Typescript :: typescript recursive types 
Typescript :: access single document with its id flutter 
Typescript :: how to sort a list of lists in python 
Typescript :: typescript http request 
Typescript :: typescript generic function 
Typescript :: how to send attachments to node mailer file not found 
Typescript :: types for array props 
Typescript :: rails assets precompile with staging flag command 
Typescript :: preventing letters from being placed in an input ts 
Typescript :: angular no internet detection 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =