'if-else-condition'은pug/jade,scss,javascript,python(백엔드)-(창고 강좌3)
1698 단어 pugscsspythonjavascript
우리는 창고에서 공부하는 조건을 사용할 것이다.
Open up git bash in the current folder
및 유형code . index.pug style.scss script.js hello.py
파일을 만들고 Visual Studio 코드 편집기를 엽니다.pug/jade 컴파일러에 대해 현재 우리는 비주얼 스튜디오 코드를 사용하여 pug를 html 코드로 직접 컴파일할 것입니다.
예제 1
- var time= true
if time == true
h1 I am true
else
h1 I am false
Scss예제 1
@mixin bdr($px,$type,$color,$boll: true){
@if $boll{
border: $px $type $color;
border-radius: $px;
}
@else{
border: $px $type $color
}
}
.demo{
width: 200px;
height: 200px;
background: red;
@include bdr(20px,solid,black);
}
Javascript예제 1
let time = true;
if(time==true){
console.log(" I am true")
}else{
console.log(" I am false")
}
구렁이예제 1
name = ["nikhil","sonchoy","shanto"]
if "nikhil" in name:
print("Name has nikhil name")
elif:
print("Name has no nikhil name")
예제 2country = True
if country == True or country != False:
print("Country is true")
elif:
print("Country is false")
많은 예가 있지만, 우리는 단지 매우 기본적인 개념을 사용하여 진일보할 뿐이다.만약 네가 이 문장에 흥미가 있다면, 평론해 봐, 나를 따라와.
감사합니다.
Reference
이 문제에 관하여('if-else-condition'은pug/jade,scss,javascript,python(백엔드)-(창고 강좌3)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nikhilroy2/if-else-condition-how-to-use-pug-jade-scss-javascript-python-backend-stack-tutorial-3-eh5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)