Created
December 25, 2018 01:48
-
-
Save animoplex/5facdbd7ddc4e3064ea98e9458343a78 to your computer and use it in GitHub Desktop.
JavaScript Operator Examples - After Effects Expression by Animoplex
This file contains hidden or 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
// JavaScript Operator Examples - Created by Animoplex: www.animoplex.com | |
// The different operators in JavaScript and their outputs. | |
// Full Tutorial: https://www.youtube.com/watch?v=ppCF7jS1nAs&t=18s | |
1 < 2 // true | |
1 > 2 // false | |
1 <= 2 // true | |
1 >= 2 // false | |
1 == 2 // false | |
1 != 2 // true | |
true && false // false | |
true || false // true | |
!true // false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment