Code Fighters
19.4K subscribers
116 photos
11 videos
61 files
168 links
🎯We add value to your asset!

WELCOME TO OUR TELEGRAM CHANNEL.

YouTube channel 🔗 LINK- https://linktw.in/iWgHMG
Inbox: @Codefighters_support
All link: https://linktr.ee/code_fighters
Website: www.codefightersdigitals.com
Download Telegram
Html
Day 10 :
HTML web pages can be read and rendered by _________
Anonymous Quiz
9%
Compiler
77%
web browser
11%
Server
4%
interpreter
CSS
Day 10 : which of the following property is used to make a font italic or oblique?
Anonymous Quiz
12%
font-variant
63%
font-style
6%
font-weight
18%
font-family
4
👏4
we have been off for a while sorry for that we are preparing more to help you as much as possible eski tell us in the comment what resources you need or any suggestions.
Thanks in advance
7 Simple Javascript Projects

📌 Share to your friends the one you like the most
1. Vanilla JavaScript stopwatch

Link : https://codepen.io/cathydutton/pen/GBcvo

@code_fighters
4. JavaScript Guess the Color Game

Link : https://codepen.io/itsmhuang/pen/oxaReK

@code_fighters
7. JavaScript browser code editor

Link : https://codepen.io/kazzkiq/pen/xGXaKR

@code_fighters
Javascript
Day 1 : Which type is JavaScript language
Anonymous Quiz
46%
Object-Oriented
34%
High-level
10%
Object-Based
9%
Assembly-language
var grade='D';
var result;
switch(grade)
{
case'A':
result+="10";
case'B':
result+=" 9";
case'C':
result+=" 8";
case 'D'
result+=" 6";
default:
result+=" 0";
}
document.write(result);
1
Day 2 : Which of the following is the correct output for the above JavaScript code:
Anonymous Quiz
6%
10
56%
6
19%
33
19%
0
👍1
Day 3 : Which of the following function of the String object returns the character in the string starting at the specified position via the specified number of characters?
Anonymous Quiz
15%
slice()
17%
split()
49%
substr()
18%
search()
👍1
🌼🌼 እንኳን ለ 2015 አዲሱ ዓመት በሰላም አደረሳችሁ አደረሰን 🌼🌼

ፍሮም @code_fighters team
function display1(option)
{
return(option ? "true" : "false");
}
var ans=true;
console.log(display1(ans));
Day 4 : Which of the following is the correct output for the above JavaScript code:
Anonymous Quiz
13%
False
46%
True
24%
Compilation error
18%
Runtime error
Day 5: Which one of the following symbol is used for creating comments in the javascript:
Anonymous Quiz
19%
\\
40%
/* */
31%
//
10%
\* */