Learning Javascript
Javascript hard parts
console.log('Learning Js');
const Hero = () => {
return (
<header className="hero">
<section className="section-center hero-center">
<article className="hero-info">
<div>
<div className="underline"></div>
<h1>i'm Ashiq</h1>
<h4>MERN stack developer</h4>
<Link to="/contact" className="btn">
contact me
</Link>
<SocialLinks />
</div>
</article>
<StaticImage
src="../assets/hero.svg"
alt="portfolio"
className="hero-img"
placeholder="blurred"
/>
{/* <img src={heroImg} alt="portfolio" className="hero-img-svg" /> */}
</section>
</header>
)
}
JavaScript, often abbreviated as JS, is a programming language that conforms to the ECMAScript specification. JavaScript is high-level, often just-in-time compiled, and multi-paradigm. It has curly-bracket syntax, dynamic typing, prototype-based object-orientation, and first-class functions
- first item
- second item
- third item