Java Hyd Team
746 subscribers
986 photos
39 videos
670 files
690 links
https://teamhydteam.my.canva.site/

Can visit us on our website 😊
Still working on it 😊
Download Telegram
Q153). <script>
let obj7={
key1: Hello_1,
key2:{
msg:Hello_2
}
};
let over=obj7.key1;
let come=obj7.key2;
let ver2=come.msg;
document.write(over,ver2);
</script>
Q154). <script>
let obj5 ={
key1:function(){
return 'Welcome to anonymous function';
}
};
let my_func = obj5.key1;
let over = my_func();
document.write(over);
</script>
Q155).<script>
let obj9 = [{p_id:111,p_name:"p_one",p_cost:10000},
{p_id:222,p_name:"p_two",p_cost:20000},
{p_id:333,p_name:"p_three",p_cost:30000},
{p_id:444,p_name:"p_four",p_cost:40000},
{p_id:555,p_name:"p_five",p_cost:50000}];

document.write(`<table border="1" align="center" cellpadding="10px" cellspacing="10px">

<tr>
<td>p_id</td>
<td>p_name</td>
<td>p_cost</td>
</tr>`);
obj9.forEach(function(element,index){
document.write(`
<tr>
<td>${element.p_id}</td>
<td>${element.p_name}</td>
<td>${element.p_cost}</td>
</tr>`)
});
document.write(</table>);
Try this level Hard complexity high
Don't miss as we already updated good opportunities there
Java Hyd Team
WhatsApp: https://chat.whatsapp.com/F7kqpKp6WFZJQiuTXpYH1K
More than 10 job updates shared for now yet more to come share us your resume for referrals in MNC s and good product base companies
Message us @stockkida for referrals
Salary ranges between 3.5lpa to 35lpa which we refer for as a fresher 😊 we support you to push the max LPA
You can join our community on discord
Java Hyd Team pinned Β«hey join me on Discord! Invite expires in 7 days. https://discord.gg/wmEUmpCXΒ»
Hello World here are 3 Javascript cheat sheet tips that all junior developers should know. These are very important to remember and will help you become a better developer.

) Array Methods
Map β€” Filter β€” Reverse;

Map allows you to take an array and create a function to change each individual object in a certain array.

Ex.) [1, 2, 3] .map (x => x *2) // [2, 4, 6];

Filter allows you to sort through the array and return all objects which follow the set of rules stated into a new array.

Ex.) [7, 12, 23].filter(x => x < 11) // [7];

Reverse allows you to rearrange the array from the back to the front.

Ex.) [6, 9, 18].reverse() // [18, 9, 6]

2.) Ternary Operator

The ternary operator is sort of like an if statement, however the syntax is different. The ternary operator will check if a statement is true, and if so it will render the first statement. Else it will render the next statement.

Syntax β€” statement === true ? render this : else render this
Ex.) var light = true;

light === true ? <h1>Light is on </h1> : <p> Light is off </p>
// LIGHT IS ON

Think of the β€œ?” as an if. If light is true , then render an h1. Else ( think of the β€œ:” as else) render the p.

3.) Arrow Functions

Arrow functions allow you to remove many elements from the traditional function syntax and really clean up your code to make it less cluttered.

Traditional function:

function multiplyItems (x) {
x * 2
return x;
}
Arrow Function : (x) => x *2
Arrow functions allow you to remove the word β€œfunction” and the function name. You can also remove the parentheses from the input, however sometimes it is helpful to keep it as it makes reading the code easier.
Join fast as a lot of opportunities will be posted and again going to be updated soon
Forwarded from SathyaReact
Sunday Class Screen Shots
Forwarded from SathyaReact
Example_1:
Forwarded from SathyaReact
Forwarded from SathyaReact