Тёмный

#13 Ternary Operator in JavaScript 

Telusko
Подписаться 2,4 млн
Просмотров 83 тыс.
50% 1

Instagram : / navinreddyofficial
Linkedin : / navinreddy20
Discord : / discord
More Learning :
Java - bit.ly/3xleOA2
Python :- bit.ly/3H0DYHx
Django :- bit.ly/3awMaD8
Spring Boot :- bit.ly/3aucCgB
Spring Framework :- bit.ly/3GRfxwe
Servlet & JSP :- bit.ly/3mh5CGz
Hibernate Tutorial :- bit.ly/3NWAKah
Rest API | Web Service Tutorial :- bit.ly/38RJCiy
Git :- bit.ly/3NUHB3V
JavaScript :- bit.ly/3mkcFys
Kotlin :- bit.ly/3GR2DOG

Наука

Опубликовано:

 

4 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 43   
@ankitkanoujiya627
@ankitkanoujiya627 Год назад
Excellent teaching really , term used in your videos is like big corporates teaches use same terms and type explanation.Thanks Sir.
@JacieWorld
@JacieWorld 2 года назад
The visuals are REALLY HELPFUL ! thanks
@N7Tonik
@N7Tonik 3 года назад
The ternary operator is my favourite one, it makes the code compact and simple.
@Telusko
@Telusko 3 года назад
Corrected 😀
@sidrhat1616
@sidrhat1616 3 года назад
First view and first like I need java great going ❤️❤️ course
@CultOfJ
@CultOfJ 3 года назад
A useful tip: always ask questions and try to solve doubts using the comment section👍
@shiekasmath3246
@shiekasmath3246 3 года назад
ternary operators starts at 3:16
@lilliesan
@lilliesan 2 года назад
Thank you very much
@saminenichandana5707
@saminenichandana5707 3 года назад
Thank you sir
@codewithkaran8860
@codewithkaran8860 2 года назад
Great content 👌
@barbarasanchezvasquez2242
@barbarasanchezvasquez2242 2 года назад
Thanks.
@everyonewantstheheavenbutn8722
@everyonewantstheheavenbutn8722 2 года назад
Keep going
@koukuntlakalyani
@koukuntlakalyani 3 года назад
Thanks 👍☺️👍☺️
@diptangshudutta3637
@diptangshudutta3637 3 года назад
im pretty new to JS so heres a probably newbie question considering that its a loosely written language why did we use "let" before num
@Kumarkumar-gf3kk
@Kumarkumar-gf3kk 2 года назад
num is a variable name. let is a keyword used to declare variables in JavaScript. Variable can be a number or String or Boolean
@abdulcaderhamdhan9782
@abdulcaderhamdhan9782 3 года назад
say me how to open the terminal in the right hand side...its always showing me in the bottom of the page
@rangabharath4253
@rangabharath4253 3 года назад
Awesome
@ismailpasha1123
@ismailpasha1123 Год назад
Shivaji the boss 😎
@informer495
@informer495 3 года назад
Please make your facecam as well as in python series
@DeepakGupta-hj2dv
@DeepakGupta-hj2dv 3 года назад
please make on video microservices tutorial
@aarrenvincent907
@aarrenvincent907 3 года назад
Sir how can we input values from consumer . Can you make video of it .
@teluskosupport1
@teluskosupport1 Год назад
using prompt() function user can enter the value in javascript but for that you need to link your script.js file to html
@umeshpandey5226
@umeshpandey5226 2 года назад
Hello Sir...Good day
@RahulKumar-rd9xo
@RahulKumar-rd9xo 8 месяцев назад
please give me the link of these type of websites...
@informer495
@informer495 3 года назад
Welcome back aliens By the way first
@MuhammadHamza-pv3fl
@MuhammadHamza-pv3fl 3 года назад
please add a js library in this javascript tutorial like react or react native plzzz don't ignore my comment I have watched your python tutorial now i'm learning this js series from Pakistan
@everyonewantstheheavenbutn8722
@everyonewantstheheavenbutn8722 2 года назад
Good
@rohit_700
@rohit_700 3 года назад
will you teach node.js in this playlist?
@teluskosupport1
@teluskosupport1 Год назад
yes, node.js is completed here is link : ru-vid.com/group/PLsyeobzWxl7occsESx2X1E2R2Uw5wCoeG
@SalmanArshad1
@SalmanArshad1 Год назад
video starts at 3:10
@balachandar6206
@balachandar6206 2 года назад
How to take console input in js
@Someone_01013
@Someone_01013 2 года назад
console.log() ;
@teluskosupport1
@teluskosupport1 Год назад
console.log() output in console but JavaScript’s prompt() method makes it simple to obtain user input from a web browser.
@suryatejaparvata
@suryatejaparvata 2 года назад
please make reactjs videos.
@mazharsolkar7500
@mazharsolkar7500 3 года назад
Which theme is this
@saminenichandana5707
@saminenichandana5707 3 года назад
Sir are you a telugu man??
@abhishekgundelli9453
@abhishekgundelli9453 2 года назад
let day1 = "monday" day234 = "tue || wed || the" day5 = "fri" day6 = "sat" day7 = "sun" const d = new Date(""); if (day1 = d ) { console.log("waikup at 7am") } if (day234 = d ) { console.log("waikup at 4am") } else { console.log("waikup at 9am") }
@yaswanthreddy3839
@yaswanthreddy3839 3 года назад
Hello sir good night
@aarrenvincent907
@aarrenvincent907 3 года назад
Sir can we have ternary operator as "odd " : "even" : "zero"
@N7Tonik
@N7Tonik 3 года назад
Not directly, the ternary has only two different return values, either the first value if the boolean condition is true or the second value if the boolean condition is false. But you could do something like this: let result = num % 2 == 0 ? (num == 0 ? "zero" : "even") : "odd"
@teluskosupport1
@teluskosupport1 Год назад
no, condition ? exprIfTrue : exprIfFalse let n=5; let str= n%2==0 ? "even" : "odd"; console.log(str);
@freeCoursescom
@freeCoursescom 3 года назад
Hello sir, I have query that if I started android app development so should I started from java or Kotlin or directly going to the Flutter and dart? Which is the path start my journey
@N7Tonik
@N7Tonik 3 года назад
It depends on which type of applications you want to build, and if you just want to publish apps for android or publish apps for both android and ios at the same time. Do some research which tool / framework suites your goals
Далее
#14 Switch Statement in JavaScript
7:58
Просмотров 120 тыс.
#19 Objects in JavaScript
10:18
Просмотров 135 тыс.
🦊🔥
00:16
Просмотров 765 тыс.
PERFECT PITCH FILTER.. (CR7 EDITION) 🙈😅
00:21
Просмотров 3,4 млн
Ternary operator in javascript
6:45
Просмотров 58 тыс.
JavaScript TERNARY OPERATOR in 6 minutes!  ❓
6:46
Просмотров 21 тыс.
#16 While loop in JavaScript
11:25
Просмотров 82 тыс.
#12 Conditional Statements If Else in JavaScript
12:17
#15 Template Literal in JavaScript
5:06
Просмотров 93 тыс.
5 JavaScript Concepts You HAVE TO KNOW
9:38
Просмотров 1,4 млн
#11 Logical Operators in JavaScript
7:30
Просмотров 73 тыс.
JavaScript Visualized - Execution Contexts
11:41
Просмотров 60 тыс.
iPhone Standby mode dock, designed with @overwerk
0:27