spread operator - 6

by Pritesh Patel

JavaScript

const merge = (obj1, obj2) => {
	return {...obj1, ...obj2}
}