The Hi Fi Tech

The Hi Fi Tech

You may also like

Heather Owens75
Heather Owens75

The HiFi Tech

Photos from The Hi Fi Tech's post 24/08/2023

.useEffect

Photos from The Hi Fi Tech's post 20/08/2023

ReactJs Roadmap
If you want share anything about ReactJs comment in comment box.

Basic Things to learn in ReactJs

Photos from The Hi Fi Tech's post 25/05/2023
25/05/2023
25/05/2023

Which code editor are you using right now???





++
Follow our page Hi Fi Tech Talk for regular update

21/05/2023

is a high-level programming language that is widely used for creating interactive and dynamic web pages. It can be embedded within documents and executed by web browsers to add functionality and interactivity to websites. JavaScript allows developers to manipulate web page elements, handle user events, perform calculations, and communicate with servers to retrieve or send data.

03/01/2023

Happy New Year Everyone

26/11/2022

Convert your ideas into Mobile Apps tailored to the need of your Brand. Android applications to iOS solutions. Our business can assist you in developing mobile applications for your business ideas. Mobile application development is one of the most experimental fields in the business right now, with big hopes for the company's future.

25/11/2022

In this more competitive world, where new ideas are discussed every minute, pitches are made every hour, and products are introduced every day, there is an increased level of competition. To meet the challenge of this cutthroat world, especially in the field of technology, we must develop a new way of thinking. Eight out of every ten businesses or concepts are dependent on technology in the modern world. Additionally, the only way to expand your company in the technology sector is to abandon the traditional method and adopt a mix of divergent and convergent thinking.We need to re-think the business Creatively, with a strong enough Strategy that has covered all the factor of scaling and risk management, and by doing all this we will come up with an Innovative solution that will be the backbone of business sustainability. And this is where we come into the role, at The HiFi Tech World, with our team of Creative, Strategic & Innovative people, we help businesses grow through our team of experts in their respective fields.

www.thehifitech.com

https://www.linkedin.com/posts/the-hifi-tech-85964423a_localdoc-mobileappdevelopment-webappdevelopment-activity-7001760005334921216-hsvK?utm_source=share&utm_medium=member_android

+

Photos from The Hi Fi Tech's post 13/09/2022

Spread operator

Hi Fi Tech Talk

12/09/2022

Git work flow

Hi Fi Tech Talk
Follow our page for regular updates

Photos from The Hi Fi Tech's post 28/08/2022

React js Road map

26/08/2022

Web developer road map

Follow our page for regular updates

03/08/2022

Hello world , how you're doing today.

Which one you use the most?
Comment below

Please discuss atleast one line about angular in comment box of you know about angular and share with your friends. ❤️

Photos from The Hi Fi Tech's post 03/08/2022

Hello world , how you're doing today.

Today we are going to talk about

Please discuss atleast one line about angular in comment box of you know about angular and share with your friends. ❤️

02/08/2022

Crud App using and

02/08/2022

Git merge -
😂🤗

28/07/2022

Topic Hooks

Prior to React Hooks (16.8), developers had to create class components in order to utilise specific React Features. But now that we can utilise stateful logic without modifying our component hierarchy, React Hooks offers a more ergonomic way to construct components.

If you like this post please share with your friends and like this post 😊

❤️ useState :
It is the most important and often used hook. The purpose of this hook to handle reactive data, any data that changes in the application is called state, when any of the data changes, React re-renders the UI.
const [count, setCount] = React.useState(0);

❤️ useEffect :
It allows us to implement all of the lifecycle hooks from within a single function API.

// this will run when the component mounts and anytime the stateful data changes
React.useEffect(() => {
alert('Hey, vishal here!');
});

// this will run, when the component is first initialized

React.useEffect(() => {
alert('Hey, vishal here!');
}, []);

// this will run only when count state changes
React.useEffect(() => {
fetch('vishal').then(() => setLoaded(true));
}, [count]);

// this will run when the component is destroyed or before the component is removed from UI.
React.useEffect(() => {
alert('Hey, vishal here');

return () => alert('Goodbye Component');
});

❤️ useContext :
This hook allows us to work with React's Context API, which itself a mechanism to allow us to share data within it's component tree without passing through props. It basically removes prop-drilling
const ans = {
right: '✅',
wrong: '❌'
}

const AnsContext = createContext(ans);

function Exam(props) {
return (
// Any child component inside this component can access the value which is sent.



)
}

function RightAns() {
// it consumes value from the nearest parent provider.
const ans = React.useContext(AnsContext);
return {ans}
// previously we were required to wrap up inside the AnsContext.Consumer
// but this useContext hook, get rids that.
}

❤️ useRef :
This hook allows us to create a mutable object. It is used, when the value keeps changes like in the case of useState hook, but the difference is, it doesn't trigger a re-render when the value changes.

The common use case of this, is to grab HTML elements from the DOM.
function App() {
const myBtn = React.useRef(null);
const handleBtn = () => myBtn.current.click();
return (


)
}

Thank you 😊☺️

Next hooks in next post stay tuned
Follow our page Hi Fi Tech Talk for regular updates

27/07/2022

Custom are likewise subject to the standard rules of Hooks. Which are:

Only use Hooks when necessary. The use of hooks within loops, conditions, or nested functions is not recommended.
Hooks should only be used by React function components.
Don't use ordinary methods to call Hooks (Your own custom Hooks are the only other place that Hooks are legitimately called.) They'll be covered in a moment.)

27/07/2022

Building the hook

24/07/2022

The array map method in React is used to display a list of items stored in an array. As such, we can render the map method like this.

const lists = [‘obj1’, ‘obj2’, ‘obj3’];
render() {
return (

{lists.map(item =>
{item})}

);
}

24/07/2022

If you wanna learn React js developer
You have to know about the basics of html,css and most important javascript

17/07/2022

install

Get it 😊
React developer

Mention your developer friends share knowledge across the world ❤️

Thanks!

Tags ignore .


,

Photos from The Hi Fi Tech's post 13/07/2022

Difference between vs
Please share with your developer friends give ❤️ if you like these post of Hi Fi Tech Talk

10/07/2022

You can use Vscode in browser

10/07/2022

Reactjs basic

10/07/2022

Stackoverflow

Photos from The Hi Fi Tech's post 06/07/2022

ABOUT JSX

Checkout this handy quick information guide

I know there are many more I've included only few if you know please mention in comment and share your knowledge .

Mention your developer friends share knowledge across the world ❤️

If you find these content are useful please give ❤️ icon share with friends

Thanks!

Tags ignore .


,

Photos from The Hi Fi Tech's post 05/07/2022

VS code shortcut for Developer

Checkout hand quick information guide

I know there are many more I've included only few if you know please mention in comment and share your knowledge .

Mention your developer friends share knowledge across the world ❤️

If you find these content are useful please give ❤️ icon share with friends

Thanks!

Tags ignore .


,

Photos from The Hi Fi Tech's post 03/07/2022

React js Developer

If you find these content are useful please give ❤️ icon share with friends

Thanks!

Tags ignore .


,

Want your business to be the top-listed Computer & Electronics Service in Hazaribag?
Click here to claim your Sponsored Listing.

Videos (show all)

#codelife #developerlife #developing #viralreels #codeanywhere #codingfun #DEVCommunity #popularreels
Popular websites built using ReactJs #facebook#instagram #Twitter Start Learning React js
Comment your age when you started your coding journey#friendship #codinglife#baby #bestfriendship #codingmemes #codingfu...
Meet the real web developer#spider#webdeveloper #fullstackdeveloper #FullStackWebDeveloper #webdev #work
Hello world!Python #python #pythoncode #java #javascript #development #helloworld #cprogramming
#chatgpt #vscode Chatgpt in vscode
#JavaScript is a high-level programming language that is widely used for creating interactive and dynamic web pages. It ...
Happy New Year Everyone #developer  #developerspace #developercommunity
Convert your ideas into Mobile Apps tailored to the need of your Brand. Android applications to iOS solutions. Our busin...
Web developer road mapFollow our page for regular updates
Web developer road map
Crud App using #php and #mysqli #softwaredeveloper #programming #php  #coding #developer #softwareengineer #programmer #...

Telephone

Address

Jhinjhariyapool
Hazaribag
825301

Other Hazaribag computer & electronics services (show all)
Shareus Shareus
SPDJ Media Pvt Ltd, SPDJ Office, Basariya
Hazaribag, 825301

Ultimate Monetization Solutions for Publishers to monetize digital content using ads & money.

Valison Technology Valison Technology
Hazaribag, 825301

Valison Technology is a game and app development company based in Hazaribag, Jharkhand, India . Fou

HzbCoder HzbCoder
Hazaribag, 825301

Welcome To Coderbagh a brand new company :)) We provide web designing & Development, App Development